@@ -4,22 +4,22 @@ on: # yamllint disable-line rule:truthy
44 pull_request :
55 branches :
66 - master
7- push :
8- branches :
9- - master
107
118name : 🧹 Fix PHP coding standards
129
1310jobs :
1411 commit-linting :
1512 timeout-minutes : 4
1613 runs-on : ubuntu-latest
14+ concurrency :
15+ cancel-in-progress : true
16+ group : commit-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1717 permissions :
1818 contents : read
1919 pull-requests : read
2020 steps :
2121 - name : 📦 Check out the codebase
22- 22+ 2323
2424 - name : 🧐 Lint commits using "commitlint"
2525@@ -32,12 +32,15 @@ jobs:
3232 yaml-linting :
3333 timeout-minutes : 4
3434 runs-on : ubuntu-latest
35+ concurrency :
36+ cancel-in-progress : true
37+ group : yaml-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
3538 permissions :
3639 contents : read
3740 pull-requests : read
3841 steps :
3942 - name : 📦 Check out the codebase
40- 43+ 4144
4245 - name : 🧐 Lint YAML files
43465457 group : markdown-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
5558 steps :
5659 - name : 📦 Check out the codebase
57- 60+ 5861
5962 - name : 🧐 Lint Markdown files
6063 uses :
DavidAnson/[email protected] 9194 tools : phive
9295
9396 - name : 📦 Check out the codebase
94- 97+ 9598
9699 - name : 🛠️ Setup problem matchers
97100 run : |
@@ -155,7 +158,7 @@ jobs:
155158 coverage : none
156159
157160 - name : 📦 Check out the codebase
158- 161+ 159162
160163 - name : 🛠️ Setup problem matchers
161164 run : |
0 commit comments