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.
2 parents a350fe0 + c4249dd commit 6cc9cacCopy full SHA for 6cc9cac
.github/workflows/code-style.yml
@@ -0,0 +1,28 @@
1
+name: Code style
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - '**.php'
7
8
+permissions:
9
+ contents: write
10
11
+jobs:
12
+ php-code-styling:
13
+ runs-on: ubuntu-latest
14
+ timeout-minutes: 5
15
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
+ with:
20
+ ref: ${{ github.head_ref }}
21
22
+ - name: Check code style
23
+ uses: aglipanci/laravel-pint-action@v2
24
25
+ - name: Commit changes
26
+ uses: stefanzweifel/git-auto-commit-action@v5
27
28
+ commit_message: Apply code style rules
0 commit comments