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 bfbcace commit d40ecf9Copy full SHA for d40ecf9
.github/pint.yml
@@ -0,0 +1,29 @@
1
+name: PHP Linting (Pint)
2
+on:
3
+ workflow_dispatch:
4
+ push:
5
+ branches-ignore:
6
+ - 'dependabot/npm_and_yarn/*'
7
+jobs:
8
+ name: PHP Linting
9
+ on: pull_request
10
+ jobs:
11
+ phplint:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: "laravel-pint"
16
+ uses: aglipanci/laravel-pint-action@latest
17
+ with:
18
+ preset: laravel
19
+ verboseMode: true
20
+ testMode: true
21
+ configPath: "pint.json"
22
+ pintVersion: 1.21.2
23
+ onlyDirty: true
24
+ onlyDiff: "master"
25
+ - name: Commit changes
26
+ uses: stefanzweifel/git-auto-commit-action@v4
27
28
+ commit_message: PHP Linting (Pint)
29
+ skip_fetch: true
0 commit comments