Skip to content

Commit 92b1221

Browse files
rtfm and adjust the checkout depth when using the snippets2changelog package
1 parent 5f46ad2 commit 92b1221

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4
21+
with:
22+
# all history is needed to crawl it properly
23+
fetch-depth: 0
2124
- name: Set up Python
2225
uses: actions/setup-python@v5
2326
with:

.github/workflows/test-release.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4
18+
with:
19+
# all history is needed to crawl it properly
20+
fetch-depth: 0
1821
- name: Set up Python
1922
uses: actions/setup-python@v5
2023
with:

.github/workflows/test.yml

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
steps:
2626
- name: Checkout
2727
uses: actions/checkout@v4
28+
with:
29+
# all history is needed to crawl it properly
30+
fetch-depth: 0
2831
- name: Set up Python
2932
uses: actions/setup-python@v5
3033
with:

0 commit comments

Comments
 (0)