Cancel jobs in progress when PR is updated (#19801)

This commit is contained in:
Bizley
2023-03-31 15:43:39 +02:00
committed by GitHub
parent 87f05afb8a
commit 1a07bb14d9
5 changed files with 16 additions and 0 deletions

View File

@ -7,6 +7,10 @@ env:
PHPUNIT_EXCLUDE_GROUP: mssql,oci,wincache,xcache,zenddata,cubrid PHPUNIT_EXCLUDE_GROUP: mssql,oci,wincache,xcache,zenddata,cubrid
XDEBUG_MODE: coverage, develop XDEBUG_MODE: coverage, develop
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: jobs:
phpunit: phpunit:
name: PHP ${{ matrix.php }} on ${{ matrix.os }} name: PHP ${{ matrix.php }} on ${{ matrix.os }}

View File

@ -3,6 +3,9 @@ on:
- push - push
name: ci-mssql name: ci-mssql
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: jobs:
tests: tests:

View File

@ -3,6 +3,9 @@ on:
- push - push
name: ci-mysql name: ci-mysql
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: jobs:
tests: tests:

View File

@ -3,6 +3,9 @@ on:
- push - push
name: ci-oracle name: ci-oracle
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: jobs:
tests: tests:

View File

@ -3,6 +3,9 @@ on:
- push - push
name: ci-pgsql name: ci-pgsql
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: jobs:
tests: tests: