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 52043ae commit 7a8737aCopy full SHA for 7a8737a
.github/workflows/generate_bindings.yml
@@ -68,6 +68,11 @@ jobs:
68
git add -A
69
git commit -m "chore(codegen): update bevy bindings"
70
git push -u origin ${{ env.BRANCH_NAME }} --force
71
+ - uses: jwalton/gh-find-current-pr@master
72
+ id: findPR
73
+ with:
74
+ state: all
75
- name: Create Or Update PR
76
+ if: success() && steps.findPR.outputs.number
77
run: |
- gh pr create --title "chore(codegen): update bevy bindings" --body "This PR updates the bevy bindings. #${{ github.event.number }}" --base ${{ github.ref }} --head ${{ env.BRANCH_NAME }} || true
78
+ gh pr create --title "chore(codegen): update bevy bindings" --body "This PR updates the bevy bindings. #${{ steps.findPR.outputs.number }}" --base ${{ github.ref }} --head ${{ env.BRANCH_NAME }} || true
0 commit comments