Skip to content

Commit

Permalink
sth
Browse files Browse the repository at this point in the history
  • Loading branch information
akucharska committed Jan 30, 2025
1 parent 334cb23 commit 5e84d92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/actions/rebase/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ runs:
# read more: https://github.com/actions/checkout?tab=readme-ov-file#usage
- name: Update origin/main
run: |
git fetch --depth 10000 origin main
git checkout origin/main
git checkout -B main
git fetch origin main
git checkout --depth 10000 origin/main
git checkout --depth 10000 -B main
git pull --depth 10000 origin main
# go back to the HEAD commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-integration-namespace-k3d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
comment_on_pr: false
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-depth: 10000
ref: ${{ github.ref }} # checkout to latest branch changes ( by default this action checkouts to the SHA that triggers action )
- uses: ./.github/actions/rebase # Would it work?
- name: Create Single Cluster
Expand Down

0 comments on commit 5e84d92

Please sign in to comment.