-
Notifications
You must be signed in to change notification settings - Fork 4
31 lines (26 loc) · 953 Bytes
/
fix-cs-php.yml
File metadata and controls
31 lines (26 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Update this by running
# curl https://gist.githubusercontent.com/mpdude/804005e2bc7717bc36e4def876a5303d/raw/fix-php-cs.yml > .github/workflows/fix-cs-php.yml
name: Coding Standards
on:
push:
branches:
- master
pull_request:
jobs:
fix-cs-violations:
name: Apply PHP-CS-Fixer
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Run PHP-CS-Fixer
uses: docker://ghcr.io/php-cs-fixer/php-cs-fixer:3.89.2-php8.4
with:
args: "fix --show-progress=dots"
- name: Commit and push back changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Fix CS with PHP-CS-Fixer"