Skip to content

Commit a1b9726

Browse files
committed
Update GitHub Actions workflow to fetch full git history
Added `fetch-depth: 0` to the checkout action to ensure the full git history is fetched. This change is crucial for workflows that rely on complete commit history for accurate processing or analysis.
1 parent 2093ee3 commit a1b9726

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/phpunit-coverage-badge.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@v4
22-
token: ${{ secrets.NUXTIFYTS_BOT_API_KEY }}
22+
with:
23+
fetch-depth: 0
24+
token: ${{ secrets.NUXTIFYTS_BOT_API_KEY }}
2325

2426
- name: Setup Git
2527
run: |

0 commit comments

Comments
 (0)