Improve CI concurrency robustness (#1423)

This commit is contained in:
Adam J. Stewart 2023-06-16 20:50:42 -05:00 коммит произвёл GitHub
Родитель b168cae22a
Коммит b4758a732a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 4 добавлений и 4 удалений

2
.github/workflows/release.yaml поставляемый
Просмотреть файл

@ -77,5 +77,5 @@ jobs:
- name: Run notebook checks
run: pytest --nbmake --durations=10 --reruns=10 docs/tutorials
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}
cancel-in-progress: true

2
.github/workflows/style.yaml поставляемый
Просмотреть файл

@ -125,5 +125,5 @@ jobs:
- name: Run pyupgrade checks
run: pyupgrade --py39-plus $(find . -path ./docs/src -prune -o -name "*.py" -print)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}
cancel-in-progress: true

2
.github/workflows/tests.yaml поставляемый
Просмотреть файл

@ -115,5 +115,5 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}
cancel-in-progress: true

2
.github/workflows/tutorials.yaml поставляемый
Просмотреть файл

@ -35,5 +35,5 @@ jobs:
- name: Run notebook checks
run: pytest --nbmake --durations=10 --reruns=10 docs/tutorials
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}
cancel-in-progress: true