File tree 2 files changed +12
-0
lines changed 2 files changed +12
-0
lines changed 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
fix-style :
15
21
name : Fix Code Style
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
php-tests :
15
21
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments