File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,18 @@ jobs:
22
22
fixcs :
23
23
name : Run php-cs-fixer
24
24
needs : sync-with-template
25
- if : ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
25
+ if : ( github.event_name == 'push' || github.event_name == 'schedule') && !startsWith(github.ref, 'refs/tags')
26
26
runs-on : ubuntu-latest
27
27
steps :
28
28
- uses : zenstruck/.github@php-cs-fixer
29
29
with :
30
30
php : 8
31
31
key : ${{ secrets.GPG_PRIVATE_KEY }}
32
+ token : ${{ secrets.COMPOSER_TOKEN }}
32
33
33
34
sync-with-template :
34
35
name : Sync meta files
35
- if : ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
36
+ if : ( github.event_name == 'push' || github.event_name == 'schedule') && !startsWith(github.ref, 'refs/tags')
36
37
runs-on : ubuntu-latest
37
38
steps :
38
39
- uses : zenstruck/.github@sync-with-template
You can’t perform that action at this time.
0 commit comments