diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-02-16 23:29:53 +0000 |
|---|---|---|
| committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-02-16 23:29:53 +0000 |
| commit | 57747b71e6ad2e5ab0e5e86fe4157cd5ad9fd98b (patch) | |
| tree | 70fc425e6b931218c3e399ee6bfacdd84cba68d3 /.github/workflows | |
| parent | 270904f630e9f2142f47d0f701bd225ad149cc00 (diff) | |
| download | python-setuptools-git-57747b71e6ad2e5ab0e5e86fe4157cd5ad9fd98b.tar.gz | |
Tweak concurrency group for CI so tags are not cancelled by pushes
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/main.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5a8d510d..2960ed3b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: |
