We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit b5f5bbaCopy full SHA for b5f5bba
1 file changed
workflows/style.yml
@@ -0,0 +1,21 @@
1
+name: Check & fix styling
2
+
3
+on: workflow_call
4
5
+jobs:
6
+ php-cs-fixer:
7
+ runs-on: self-hosted
8
+ container: setupphp/node:latest
9
+ steps:
10
+ - name: Checkout code
11
+ uses: actions/checkout@v2
12
13
+ - name: Run PHP CS Fixer
14
+ uses: docker://oskarstark/php-cs-fixer-ga
15
+ with:
16
+ args: --config=.php-cs-fixer.dist.php
17
18
+ - name: Commit changes
19
+ uses: stefanzweifel/git-auto-commit-action@v4
20
21
+ commit_message: Fix styling
0 commit comments