File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 - cron : 30 3 * * *
1212
1313concurrency :
14- group : ${{ github.workflow }}-${{ github.ref }}
15- cancel-in-progress : true
14+ # Group by workflow and ref; the last component ensures that for pull requests
15+ # we limit to one concurrent job, but for the default/stable branch we don't
16+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != github.event.repository.default_branch && !startsWith(github.ref, 'refs/heads/stable-')) || github.run_number }}
17+ # Only cancel intermediate pull request builds
18+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
1619
1720jobs :
1821 with-external-planarity-bliss :
Original file line number Diff line number Diff line change 1111 - cron : 30 3 * * *
1212
1313concurrency :
14- group : ${{ github.workflow }}-${{ github.ref }}
15- cancel-in-progress : true
14+ # Group by workflow and ref; the last component ensures that for pull requests
15+ # we limit to one concurrent job, but for the default/stable branch we don't
16+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != github.event.repository.default_branch && !startsWith(github.ref, 'refs/heads/stable-')) || github.run_number }}
17+ # Only cancel intermediate pull request builds
18+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
1619
1720jobs :
1821 lint :
Original file line number Diff line number Diff line change 1111 - cron : " 20 3 * * *"
1212
1313concurrency :
14- group : ${{ github.workflow }}-${{ github.ref }}
15- cancel-in-progress : true
14+ # Group by workflow and ref; the last component ensures that for pull requests
15+ # we limit to one concurrent job, but for the default/stable branch we don't
16+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != github.event.repository.default_branch && !startsWith(github.ref, 'refs/heads/stable-')) || github.run_number }}
17+ # Only cancel intermediate pull request builds
18+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
1619
1720jobs :
1821 manual :
Original file line number Diff line number Diff line change 1414 DIGRAPHS_LIB : digraphs-lib-0.7
1515
1616concurrency :
17- group : ${{ github.workflow }}-${{ github.ref }}
18- cancel-in-progress : true
17+ # Group by workflow and ref; the last component ensures that for pull requests
18+ # we limit to one concurrent job, but for the default/stable branch we don't
19+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != github.event.repository.default_branch && !startsWith(github.ref, 'refs/heads/stable-')) || github.run_number }}
20+ # Only cancel intermediate pull request builds
21+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
1922
2023jobs :
2124 test :
Original file line number Diff line number Diff line change 1414 DIGRAPHS_LIB : digraphs-lib-0.7
1515
1616concurrency :
17- group : ${{ github.workflow }}-${{ github.ref }}
18- cancel-in-progress : true
17+ # Group by workflow and ref; the last component ensures that for pull requests
18+ # we limit to one concurrent job, but for the default/stable branch we don't
19+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != github.event.repository.default_branch && !startsWith(github.ref, 'refs/heads/stable-')) || github.run_number }}
20+ # Only cancel intermediate pull request builds
21+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
1922
2023jobs :
2124 test-unix :
Original file line number Diff line number Diff line change 1515 NO_COVERAGE : true
1616
1717concurrency :
18- group : ${{ github.workflow }}-${{ github.ref }}
19- cancel-in-progress : true
18+ # Group by workflow and ref; the last component ensures that for pull requests
19+ # we limit to one concurrent job, but for the default/stable branch we don't
20+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != github.event.repository.default_branch && !startsWith(github.ref, 'refs/heads/stable-')) || github.run_number }}
21+ # Only cancel intermediate pull request builds
22+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
2023
2124jobs :
2225 test-valgrind :
You can’t perform that action at this time.
0 commit comments