File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1010 # Allow manually triggering the workflow.
1111 workflow_dispatch :
1212
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+
1319jobs :
1420 fix-style :
1521 name : Fix Code Style
Original file line number Diff line number Diff line change 1010 # Allow manually triggering the workflow.
1111 workflow_dispatch :
1212
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+
1319jobs :
1420 php-tests :
1521 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments