We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3be7c1e commit 2f28601Copy full SHA for 2f28601
.github/workflows/rocm-open-upstream-pr.yml
@@ -20,8 +20,9 @@ jobs:
20
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21
- name: Rebase code to main
22
run: |
23
- git checkout -b $NEW_BRANCH_NAME ${{ github.head_ref }}
24
- git rebase --onto main
+ git fetch
+ git checkout -b $NEW_BRANCH_NAME origin/${{ github.head_ref }}
25
+ git rebase --onto origin/main
26
git push origin HEAD
27
# TODO: Change the base of the PR to upstream main
28
- name: Create a PR to upstream
0 commit comments