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 ccad164 commit 3fdcde3Copy full SHA for 3fdcde3
.github/workflows/csfix.yml
@@ -6,14 +6,17 @@ jobs:
6
php-cs-fixer:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v1
10
with:
11
ref: ${{ github.head_ref }}
12
13
- - name: Run php-cs-fixer
14
- uses: docker://oskarstark/php-cs-fixer-ga
+ - name: "Install dependencies with composer"
+ run: "composer install --no-interaction --no-progress --no-suggest"
15
16
- - uses: stefanzweifel/git-auto-commit-action@v3.0.0
+ - name: "Run friendsofphp/php-cs-fixer"
17
+ run: "vendor/bin/php-cs-fixer fix --config=.php_cs --diff --diff-format=udiff --verbose"
18
+
19
+ - uses: stefanzweifel/git-auto-commit-action@v2.5.0
20
21
commit_message: Apply php-cs-fixer changes
22
branch: ${{ github.head_ref }}
0 commit comments