diff --git a/.github/workflows/format_php b/.github/workflows/format_php deleted file mode 100644 index eeb5828..0000000 --- a/.github/workflows/format_php +++ /dev/null @@ -1,26 +0,0 @@ -name: Format (PHP) - -on: - push: - paths: - - '**.php' - -jobs: - php-cs-fixer: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - - name: Install - run: composer install - - - name: Run php-cs-fixer - run: ./vendor/bin/php-cs-fixer fix - - - uses: stefanzweifel/git-auto-commit-action@v2.1.0 - with: - commit_message: Apply php-cs-fixer changes - branch: ${{ github.head_ref }} - env: - GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} -