@@ -4,22 +4,22 @@ on: # yamllint disable-line rule:truthy
4
4
pull_request :
5
5
branches :
6
6
- master
7
- push :
8
- branches :
9
- - master
10
7
11
8
name : 🧹 Fix PHP coding standards
12
9
13
10
jobs :
14
11
commit-linting :
15
12
timeout-minutes : 4
16
13
runs-on : ubuntu-latest
14
+ concurrency :
15
+ cancel-in-progress : true
16
+ group : commit-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
17
17
permissions :
18
18
contents : read
19
19
pull-requests : read
20
20
steps :
21
21
- name : 📦 Check out the codebase
22
-
22
+
23
23
24
24
- name : 🧐 Lint commits using "commitlint"
25
25
@@ -32,12 +32,15 @@ jobs:
32
32
yaml-linting :
33
33
timeout-minutes : 4
34
34
runs-on : ubuntu-latest
35
+ concurrency :
36
+ cancel-in-progress : true
37
+ group : yaml-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
35
38
permissions :
36
39
contents : read
37
40
pull-requests : read
38
41
steps :
39
42
- name : 📦 Check out the codebase
40
-
43
+
41
44
42
45
- name : 🧐 Lint YAML files
43
46
54
57
group : markdown-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
55
58
steps :
56
59
- name : 📦 Check out the codebase
57
-
60
+
58
61
59
62
- name : 🧐 Lint Markdown files
60
63
uses :
DavidAnson/[email protected]
91
94
tools : phive
92
95
93
96
- name : 📦 Check out the codebase
94
-
97
+
95
98
96
99
- name : 🛠️ Setup problem matchers
97
100
run : |
@@ -155,7 +158,7 @@ jobs:
155
158
coverage : none
156
159
157
160
- name : 📦 Check out the codebase
158
-
161
+
159
162
160
163
- name : 🛠️ Setup problem matchers
161
164
run : |
0 commit comments