From 7c7f937945420375d2716c79c366b948e642bf58 Mon Sep 17 00:00:00 2001 From: Jaz White Date: Mon, 8 Jan 2024 13:43:01 -0500 Subject: [PATCH] fix: fetch depth in main action incorrect (#47) fetch depth should be lookback (10) + 1 also, re-enable prune because it's a public repo --- .github/workflows/find-code-refs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/find-code-refs.yml b/.github/workflows/find-code-refs.yml index 6193069..442dfa1 100644 --- a/.github/workflows/find-code-refs.yml +++ b/.github/workflows/find-code-refs.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v4 with: repository: launchdarkly/SupportService - fetch-depth: 10 + fetch-depth: 11 - name: LaunchDarkly Code References uses: launchdarkly/find-code-references@main with: @@ -22,3 +22,4 @@ jobs: ignoreServiceErrors: true projKey: support-service allowTags: true + prune: true