Skip to content

Commit 5e84d92

Browse files
committed
sth
1 parent 334cb23 commit 5e84d92

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/rebase/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ runs:
1616
# read more: https://github.com/actions/checkout?tab=readme-ov-file#usage
1717
- name: Update origin/main
1818
run: |
19-
git fetch --depth 10000 origin main
20-
git checkout origin/main
21-
git checkout -B main
19+
git fetch origin main
20+
git checkout --depth 10000 origin/main
21+
git checkout --depth 10000 -B main
2222
git pull --depth 10000 origin main
2323
2424
# go back to the HEAD commit

.github/workflows/pull-integration-namespace-k3d.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
comment_on_pr: false
2222
- uses: actions/checkout@v4
2323
with:
24-
fetch-depth: 0
24+
fetch-depth: 10000
2525
ref: ${{ github.ref }} # checkout to latest branch changes ( by default this action checkouts to the SHA that triggers action )
2626
- uses: ./.github/actions/rebase # Would it work?
2727
- name: Create Single Cluster

0 commit comments

Comments
 (0)