Skip to content

Commit

Permalink
Release auto update version
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyReleaseBot committed Jan 8, 2024
1 parent 53e22e1 commit fc57a82
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM launchdarkly/ld-find-code-refs-github-action:2.11.4
FROM launchdarkly/ld-find-code-refs-github-action:2.11.5

LABEL com.github.actions.name="LaunchDarkly Code References"
LABEL com.github.actions.description="Find references to feature flags in your code."
Expand Down
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
fetch-depth: 11 # This value must be set if the lookback configuration option is not disabled for find-code-references. Read more: https://github.com/launchdarkly/ld-find-code-refs#searching-for-unused-flags-extinctions
- name: LaunchDarkly Code References
uses: launchdarkly/find-code-references@v2.11.4
uses: launchdarkly/find-code-references@v2.11.5
with:
accessToken: ${{ secrets.LD_ACCESS_TOKEN }}
projKey: LD_PROJECT_KEY
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
with:
fetch-depth: 11 # This value must be set if the lookback configuration option is not disabled for find-code-references. Read more: https://github.com/launchdarkly/ld-find-code-refs#searching-for-unused-flags-extinctions
- name: LaunchDarkly Code References
uses: launchdarkly/find-code-references@v2.11.4
uses: launchdarkly/find-code-references@v2.11.5
with:
accessToken: ${{ secrets.LD_ACCESS_TOKEN }}
projKey: LD_PROJECT_KEY
Expand All @@ -86,4 +86,5 @@ If the action fails, there may be a problem with your configuration. To investig
| lookback | Set the number of commits to search in history for whether you removed a feature flag from code. You may set to 0 to disable this feature. Setting this option to a high value will increase search time. | `false` | 10 |
| projKey | Key of the LaunchDarkly project associated with this repository. Found under Account Settings -> Projects in the LaunchDarkly dashboard. Cannot be combined with `projects` block in configuration file. | `false` | |
| repoName | The repository name. Defaults to the current GitHub repository. | `false` | |
| prune | There is a known issue where the GitHub Action will not prune deleted branch data in private repos. Only enable this if you are running the action in a public repo. | `false` | false |
<!-- action-docs-inputs -->
5 changes: 5 additions & 0 deletions action.yml
Expand Up @@ -38,6 +38,10 @@ inputs:
repoName:
description: "The repository name. Defaults to the current GitHub repository."
required: false
prune:
default: "false"
description: "There is a known issue where the GitHub Action will not prune deleted branch data in private repos. Only enable this if you are running the action in a public repo."
required: false
runs:
using: 'docker'
image: 'Dockerfile'
Expand All @@ -51,3 +55,4 @@ runs:
LD_DEBUG: ${{ inputs.debug }}
LD_IGNORE_SERVICE_ERRORS: ${{ inputs.ignoreServiceErrors }}
LD_LOOKBACK: ${{ inputs.lookback }}
LD_PRUNE: ${{ inputs.prune }}

0 comments on commit fc57a82

Please sign in to comment.