Skip to content

Laravel 11

Laravel 11 #7

Workflow file for this run

name: Code Style
on: [push]
jobs:
php-cs-fixer:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Run PHP CS Fixer
uses: docker://oskarstark/php-cs-fixer-ga
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply PHP CS Fixer changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}