We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78ea9f4 commit f4bd9b1Copy full SHA for f4bd9b1
.github/workflows/ci.yml
@@ -68,12 +68,14 @@ jobs:
68
path: libraries/vendor
69
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
70
- name: Check PHP code style
71
+ id: check-codestyle
72
env:
73
PHP_CS_FIXER_IGNORE_ENV: true
74
run: |
75
git config --global --add safe.directory $GITHUB_WORKSPACE
76
./libraries/vendor/bin/${{ matrix.command }}
77
- uses: parkerbxyz/suggest-changes@v2
78
+ if: failure() && steps.check-codestyle.outcome == 'failure'
79
with:
80
comment: 'Your code does not comply with our codestyle. Please commit the suggested changes.'
81
0 commit comments