From 19a8c6022163ed4c06f19c415092943343bb8fc5 Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Tue, 27 Aug 2024 09:37:13 +0200 Subject: [PATCH] Nutze Docker-Image von friends-of-php/php-cs-fixer --- .github/workflows/fix-cs-php.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fix-cs-php.yml b/.github/workflows/fix-cs-php.yml index 1d86579..fc9f2bd 100644 --- a/.github/workflows/fix-cs-php.yml +++ b/.github/workflows/fix-cs-php.yml @@ -1,3 +1,6 @@ +# Update this by running +# curl https://gist.github.com/mpdude/ca93a185bcbf56eb7e341632ad4f8263/raw/fix-cs-php.yml > .github/workflows/fix-cs-php.yml + on: push: branches: @@ -7,9 +10,10 @@ on: name: Coding Standards jobs: - open-pr-for-cs-violations: + fix-cs-issues: name: PHP-CS-Fixer runs-on: ubuntu-22.04 + if: github.actor != 'dependabot[bot]' steps: - name: Checkout code uses: actions/checkout@v4 @@ -17,9 +21,11 @@ jobs: ref: ${{ github.head_ref }} - name: Run PHP-CS-Fixer - uses: docker://ghcr.io/webfactory/php-cs-fixer:3.62.0 + uses: docker://ghcr.io/php-cs-fixer/php-cs-fixer:3.62.0-php8.3 + with: + args: "fix --show-progress=dots" - name: Commit and push back changes - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "Fix CS with PHP-CS-Fixer"