attribute-spass/.forgejo/workflows/push.yml
lubiana 0b7f70541f
All checks were successful
/ ls (push) Successful in 19s
test
2023-10-16 22:14:40 +02:00

25 lines
738 B
YAML

on: [push]
jobs:
ls:
runs-on: docker
container:
image: git.php.fail/lubiana/container/php:8.2.11-node
steps:
- uses: actions/checkout@v3
- 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 status --porcelain
git status -s
if [[ -z $(git status --porcelain) ]]; then
echo lol
fi