Skip to content

Commit c094f49

Browse files
committed
FIX: Add fetch-depth: 0 to enable full git history for changelog feature
1 parent c731a33 commit c094f49

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v5
8+
with:
9+
fetch-depth: 0 # Fetch full git history for changelog feature
810
- name: Setup Anaconda
911
uses: conda-incubator/setup-miniconda@v3
1012
with:

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v5
13+
with:
14+
fetch-depth: 0 # Fetch full git history for changelog feature
1315
- name: Setup Anaconda
1416
uses: conda-incubator/setup-miniconda@v3
1517
with:

0 commit comments

Comments
 (0)