mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 13:33:09 +00:00
Merge pull request #1147 from LeastAuthority/3829.cancel-redundant-ga-jobs
Auto-cancel redundant GA jobs Fixes: ticket:3829
This commit is contained in:
commit
dd29efc11b
17
.github/workflows/ci.yml
vendored
17
.github/workflows/ci.yml
vendored
@ -6,6 +6,23 @@ on:
|
|||||||
- "master"
|
- "master"
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
|
# Control to what degree jobs in this workflow will run concurrently with
|
||||||
|
# other instances of themselves.
|
||||||
|
#
|
||||||
|
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#concurrency
|
||||||
|
concurrency:
|
||||||
|
# We want every revision on master to run the workflow completely.
|
||||||
|
# "head_ref" is not set for the "push" event but it is set for the
|
||||||
|
# "pull_request" event. If it is set then it is the name of the branch and
|
||||||
|
# we can use it to make sure each branch has only one active workflow at a
|
||||||
|
# time. If it is not set then we can compute a unique string that gives
|
||||||
|
# every master/push workflow its own group.
|
||||||
|
group: "${{ github.head_ref || format('{0}-{1}', github.run_number, github.run_attempt) }}"
|
||||||
|
|
||||||
|
# Then, we say that if a new workflow wants to start in the same group as a
|
||||||
|
# running workflow, the running workflow should be cancelled.
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# Tell Hypothesis which configuration we want it to use.
|
# Tell Hypothesis which configuration we want it to use.
|
||||||
TAHOE_LAFS_HYPOTHESIS_PROFILE: "ci"
|
TAHOE_LAFS_HYPOTHESIS_PROFILE: "ci"
|
||||||
|
0
newsfragments/3829.minor
Normal file
0
newsfragments/3829.minor
Normal file
Loading…
Reference in New Issue
Block a user