test
All checks were successful
/ ls (push) Successful in 19s

This commit is contained in:
lubiana 2023-10-16 21:59:20 +02:00
parent ff7e416c57
commit 9228c09d60
No known key found for this signature in database
2 changed files with 12 additions and 4 deletions

View file

@ -9,4 +9,14 @@ jobs:
- run: env | sort
- run: composer install
- run: composer fix
- name: GIT commit and push all changed files
env:
CI_COMMIT_MESSAGE: Continuous Integration Build Artifacts
CI_COMMIT_AUTHOR: Continuous Integration
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "username@users.noreply.github.com"
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }}"
git push