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 54ad94a commit 0e44635Copy full SHA for 0e44635
.github/workflows/fix-cs.yml
@@ -1,9 +1,9 @@
1
name: Fix Code Style
2
3
on:
4
- push:
+ pull_request:
5
branches:
6
- - master
+ - "*"
7
8
permissions:
9
contents: write
@@ -19,6 +19,8 @@ jobs:
19
steps:
20
- name: Checkout code
21
uses: actions/checkout@v4
22
+ with:
23
+ ref: ${{ github.head_ref }}
24
25
- name: Setup PHP
26
uses: shivammathur/setup-php@v2
@@ -37,7 +39,7 @@ jobs:
37
39
# Revert modifications so they don't get committed 💥
38
40
- run: git checkout -- composer.json
41
- - uses: stefanzweifel/git-auto-commit-action@v4
42
+ - uses: stefanzweifel/git-auto-commit-action@v5
43
with:
44
commit_message: composer fix-style
45
commit_author: laravel-debugbar <[email protected]>
0 commit comments