Skip to content

Commit

Permalink
Merge pull request #3116 from abravalheri/ensure-release-job-runs
Browse files Browse the repository at this point in the history
Tweak concurrency group for CI so `tag` is not cancelled by `push`
  • Loading branch information
jaraco committed Feb 17, 2022
2 parents 270904f + fd6a508 commit ba029ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ name: tests
on: [push, pull_request, workflow_dispatch]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
group: >-
${{ github.workflow }}-
${{ github.ref_type }}-
${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true

jobs:
Expand Down
1 change: 1 addition & 0 deletions changelog.d/3093.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Repaired automated release process.

0 comments on commit ba029ee

Please sign in to comment.