Cancel running workflows automatically on PR update (#31044)

* Cancel running workflows automatically on PR update
* Add the last update later to check cancellation is working
* Use github.run_number instead of github.sha
This commit is contained in:
Massimiliano Culpo
2022-06-09 00:46:46 +02:00
committed by GitHub
parent bedad508a9
commit 3fdb3f832a
5 changed files with 22 additions and 0 deletions

View File

@@ -9,6 +9,11 @@ on:
branches:
- develop
- releases/**
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_number }}
cancel-in-progress: true
jobs:
# Validate that the code can be run on all the Python versions
# supported by Spack