Skip to content

Commit ba029ee

Browse files
authored
Merge pull request #3116 from abravalheri/ensure-release-job-runs
Tweak concurrency group for CI so `tag` is not cancelled by `push`
2 parents 270904f + fd6a508 commit ba029ee

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/main.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ name: tests
33
on: [push, pull_request, workflow_dispatch]
44

55
concurrency:
6-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
6+
group: >-
7+
${{ github.workflow }}-
8+
${{ github.ref_type }}-
9+
${{ github.event.pull_request.number || github.sha }}
710
cancel-in-progress: true
811

912
jobs:

changelog.d/3093.misc.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Repaired automated release process.

0 commit comments

Comments
 (0)