File tree Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,25 @@ jobs:
16
16
composer-validate :
17
17
uses : zenstruck/.github/.github/workflows/php-composer-validate.yml@main
18
18
19
- cs-check :
20
- uses : zenstruck/.github/.github/workflows/php-cs-fixer.yml@main
21
- with :
22
- php : 8.0
23
-
24
19
sca :
25
20
uses : zenstruck/.github/.github/workflows/php-stan.yml@main
21
+
22
+ fixcs :
23
+ name : Run php-cs-fixer
24
+ needs : sync-with-template
25
+ if : ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
26
+ runs-on : ubuntu-latest
27
+ steps :
28
+ - uses : zenstruck/.github@php-cs-fixer
29
+ with :
30
+ php : 8
31
+ key : ${{ secrets.GPG_PRIVATE_KEY }}
32
+
33
+ sync-with-template :
34
+ name : Sync meta files
35
+ if : ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
36
+ runs-on : ubuntu-latest
37
+ steps :
38
+ - uses : zenstruck/.github@sync-with-template
39
+ with :
40
+ key : ${{ secrets.GPG_PRIVATE_KEY }}
You can’t perform that action at this time.
0 commit comments