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 4c509ec commit ff31d5bCopy full SHA for ff31d5b
.github/workflows/run-ci-for-external-forks.yml
@@ -55,7 +55,10 @@ jobs:
55
COMMIT_SHA: ${{ inputs.commit-sha }}
56
57
- name: Push Branch
58
- run: git push origin HEAD --force
+ run: |
59
+ # Rewrite last commit so GitHub considers it new and runs the CI jobs with our secrets
60
+ git commit --amend --no-edit
61
+ git push origin HEAD --force
62
63
- name: "Create Draft PR"
64
run: |
0 commit comments