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 ec94721 commit 73c750dCopy full SHA for 73c750d
.github/workflows/update.yml
@@ -3,6 +3,7 @@
3
name: "Update stubs"
4
on:
5
workflow_dispatch:
6
+ pull_request:
7
push:
8
branches:
9
- "main"
@@ -115,6 +116,7 @@ jobs:
115
116
with:
117
version: ${{ steps.previous_tag.outputs.tag }}
118
- name: "Commit changes"
119
+ if: github.event_name != 'pull_request'
120
uses: "stefanzweifel/git-auto-commit-action@v6"
121
id: "commit"
122
@@ -123,3 +125,6 @@ jobs:
123
125
commit_user_email: "[email protected]"
124
126
commit_author: "phpstan-bot <[email protected]>"
127
tagging_message: ${{ steps.semvers.outputs.patch }}
128
+ - name: "Show diff"
129
+ if: github.event_name == 'pull_request'
130
+ run: "git diff"
0 commit comments