File tree Expand file tree Collapse file tree 4 files changed +24
-0
lines changed Expand file tree Collapse file tree 4 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 5
5
branches :
6
6
- master
7
7
8
+ # Cancels all previous workflow runs for the same branch that have not yet completed.
9
+ concurrency :
10
+ # The concurrency group contains the workflow name and the branch name.
11
+ group : ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress : true
13
+
8
14
jobs :
9
15
check-prs :
10
16
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 10
10
# Allow manually triggering the workflow.
11
11
workflow_dispatch :
12
12
13
+ # Cancels all previous workflow runs for the same branch that have not yet completed.
14
+ concurrency :
15
+ # The concurrency group contains the workflow name and the branch name.
16
+ group : ${{ github.workflow }}-${{ github.ref }}
17
+ cancel-in-progress : true
18
+
13
19
jobs :
14
20
phpstan :
15
21
name : " PHP: 7.4 | PHPStan"
Original file line number Diff line number Diff line change 10
10
# Allow manually triggering the workflow.
11
11
workflow_dispatch :
12
12
13
+ # Cancels all previous workflow runs for the same branch that have not yet completed.
14
+ concurrency :
15
+ # The concurrency group contains the workflow name and the branch name.
16
+ group : ${{ github.workflow }}-${{ github.ref }}
17
+ cancel-in-progress : true
18
+
13
19
jobs :
14
20
build :
15
21
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 10
10
# Allow manually triggering the workflow.
11
11
workflow_dispatch :
12
12
13
+ # Cancels all previous workflow runs for the same branch that have not yet completed.
14
+ concurrency :
15
+ # The concurrency group contains the workflow name and the branch name.
16
+ group : ${{ github.workflow }}-${{ github.ref }}
17
+ cancel-in-progress : true
18
+
13
19
jobs :
14
20
checkxml :
15
21
name : Check XML files
You can’t perform that action at this time.
0 commit comments