on: [push] jobs: ls: runs-on: docker container: image: git.php.fail/lubiana/container/php:8.2.11-node-2 steps: - uses: actions/checkout@v3 - name: Get Composer Cache Directory id: composer-cache run: | echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - uses: actions/cache@v3 id: restore-cache with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-cache - 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 [[ -n $(git status --porcelain) ]]; then echo lol fi