Skip to content

Commit 92ff8e7

Browse files
committed
fix: include git workspace in action run
1 parent 983718d commit 92ff8e7

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.github/workflows/pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ jobs:
7373
- name: Checkout
7474
uses: actions/checkout@v4
7575
with:
76+
fetch-depth: 0
7677
filter: blob:none
78+
persist-credentials: false
7779

7880
- name: Create env file
7981
run: |

.github/workflows/pre-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
filter: blob:none
19+
persist-credentials: false
1620

1721
- name: Create env file
1822
run: |

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
filter: blob:none
20+
persist-credentials: false
1721

1822
- name: Create env file
1923
run: |

0 commit comments

Comments
 (0)