-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (32 loc) · 992 Bytes
/
phpcbf.yml
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
32
33
34
35
36
37
38
39
40
41
42
name: Run PHP CodeSniffer
# Run PHPCBF to fix changes and commit the fixes.
on:
push:
branches:
- main
paths:
- '**.php'
jobs:
php-codesniffer:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.4' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer, cs2pr
- name: Run composer install
run: composer install
# TODO: Only run PHPCBF on files that have been changed.
- name: Run PHPCBF to fix what it can
continue-on-error: true # It may not fix all the changes, in which case it will return a non-zero error code, but we still want to commit the automatic fixes.
run: vendor/bin/phpcbf
- name: Commit PHPCBF changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "🤖 PHPCBF"