You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
27
+
fetch-depth: 10# 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
24
28
- name: LaunchDarkly Code References
25
-
uses: launchdarkly/find-code-references@v2.5.0
29
+
uses: launchdarkly/find-code-references@v2.5.4
26
30
with:
27
31
accessToken: ${{ secrets.LD_ACCESS_TOKEN }}
28
-
projKey: YOUR_PROJECT_KEY
32
+
projKey: LD_PROJECT_KEY
29
33
```
30
34
31
35
We strongly recommend that you update the second `uses` attribute value to reference the latest tag in the [launchdarkly/find-code-references repository](https://github.com/launchdarkly/find-code-references). This will pin your workflow to a particular version of the `launchdarkly/find-code-references` action. Also, make sure to change `projKey` to the key of the LaunchDarkly project associated with this repository.
@@ -34,6 +38,34 @@ Commit this file under a new branch. Submit as a PR to your code reviewers to b
34
38
35
39
As shown in the above example, the workflow should run on the `push` event, and contain an action provided by the [launchdarkly/find-code-references repository](https://github.com/launchdarkly/find-code-references). The `LD_ACCESS_TOKEN` configured in the previous step should be included as a secret, as well as a new environment variable containing your LaunchDarkly project key.
36
40
41
+
## Additional Examples
42
+
The example below is the same as first, but it also excludes any `dependabot` branches. We suggest excluding any automatically generated branches where flags do not change.
fetch-depth: 10 # 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
63
+
- name: LaunchDarkly Code References
64
+
uses: launchdarkly/find-code-references@v2.5.4
65
+
with:
66
+
accessToken: ${{ secrets.LD_ACCESS_TOKEN }}
67
+
projKey: LD_PROJECT_KEY
68
+
```
37
69
## Troubleshooting
38
70
39
71
Once your workflow has been created, the best way to confirm that the workflow is executing correctly is to create a new pull request with the workflow file and verify that the newly created action succeeds.
0 commit comments