mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-24 14:34:09 +00:00
Only patch code if it is a push event
This commit is contained in:
parent
6396bf2849
commit
7d21f11e56
2
.github/workflows/composer.yml
vendored
2
.github/workflows/composer.yml
vendored
|
@ -31,7 +31,9 @@ jobs:
|
|||
- name: Run Composer test
|
||||
run: composer test
|
||||
|
||||
# Only patch code when it is a push event
|
||||
- name: Push the changes
|
||||
if: github.event_name == 'push'
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
|
|
2
.github/workflows/grunt.yml
vendored
2
.github/workflows/grunt.yml
vendored
|
@ -29,7 +29,9 @@ jobs:
|
|||
- name: Run Grunt test
|
||||
run: npm run test
|
||||
|
||||
# Only patch code when it is a push event
|
||||
- name: Push the changes
|
||||
if: github.event_name == 'push'
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue