Skip to content

Add allow stray requests method to config #927

Add allow stray requests method to config

Add allow stray requests method to config #927

Workflow file for this run

name: Code Style
on:
push:
branches:
- 'v1'
- 'v2'
- 'v3'
pull_request:
branches:
- '*'
permissions:
contents: write
concurrency:
group: ${{ github.head_ref || github.ref || github.run_id }}_php_cs_fixer
cancel-in-progress: true
jobs:
php-cs-fixer:
name: PHP-CS-Fixer
if: '! github.event.pull_request.draft'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
ref: ${{ github.head_ref }}
- name: 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@v6
with:
commit_message: 🪄 Code Style Fixes