Skip to content

Instantly share code, notes, and snippets.

@medusiora
Created March 25, 2024 06:27
Show Gist options
  • Save medusiora/3c6446d142b75827c99cbe3c519c964f to your computer and use it in GitHub Desktop.
Save medusiora/3c6446d142b75827c99cbe3c519c964f to your computer and use it in GitHub Desktop.
Github Action - PHP-CS-Fixer
name: PHP-CS-Fixer
on: [push, pull_request]
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Run PHP CS Fixer
uses: docker://oskarstark/php-cs-fixer-ga
with:
args: --config=.php-cs-fixer.dist.php --allow-risky=yes
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply php-cs-fixer changes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment