We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4e059f commit 0d6b224Copy full SHA for 0d6b224
.github/workflows/generate_bindings.yml
@@ -29,11 +29,22 @@ jobs:
29
- name: Run the generator
30
run: ./gen/generate.sh
31
32
- - name: Create Pull Request
+ - name: Create Pull Request (on push)
33
uses: peter-evans/create-pull-request@v6
34
with:
35
commit-message: "Regenerate bindings"
36
title: "Regenerate bindings"
37
reviewers: |
38
quinnj
39
Octogonapus
40
+
41
+ - name: Create Pull Request (on PR)
42
+ if: ${{ github.event_name == 'pull_request' }}
43
+ uses: peter-evans/create-pull-request@v6
44
+ with:
45
+ base: ${{ github.head_ref }}
46
+ commit-message: "Regenerate bindings"
47
+ title: "Regenerate bindings"
48
+ reviewers: |
49
+ quinnj
50
+ Octogonapus
0 commit comments