Skip to content

Commit 6ecd22c

Browse files
authored
Add fetch-depth: 0 to checkout actions for changelog support (#689)
* Add fetch-depth: 0 to checkout actions for changelog support * Add fetch-depth: 0 to cache workflow for changelog support * Temporarily disable build cache to test changelog feature * Revert "Temporarily disable build cache to test changelog feature" This reverts commit 155c103.
1 parent 059e0f4 commit 6ecd22c

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/cache.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@v6
13+
with:
14+
fetch-depth: 0
1315
- name: Setup Anaconda
1416
uses: conda-incubator/setup-miniconda@v3
1517
with:

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ jobs:
66
steps:
77
- name: Checkout
88
uses: actions/checkout@v6
9+
with:
10+
fetch-depth: 0
911
- name: Setup Anaconda
1012
uses: conda-incubator/setup-miniconda@v3
1113
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@v6
13+
with:
14+
fetch-depth: 0
1315
- name: Setup Anaconda
1416
uses: conda-incubator/setup-miniconda@v3
1517
with:

0 commit comments

Comments
 (0)