mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
ci: Specify concurrency to help with consecutive pushes
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
0299955074
commit
6def538154
11 changed files with 44 additions and 0 deletions
4
.github/workflows/cypress.yml
vendored
4
.github/workflows/cypress.yml
vendored
|
|
@ -8,6 +8,10 @@ on:
|
|||
- master
|
||||
- stable*
|
||||
|
||||
concurrency:
|
||||
group: cypress-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
# Adjust APP_NAME if your repository name is different
|
||||
APP_NAME: ${{ github.event.repository.name }}
|
||||
|
|
|
|||
4
.github/workflows/ftp.yml
vendored
4
.github/workflows/ftp.yml
vendored
|
|
@ -12,6 +12,10 @@ on:
|
|||
- '.github/**'
|
||||
- 'apps/files_external/**'
|
||||
|
||||
concurrency:
|
||||
group: ftp-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
APP_NAME: files_external
|
||||
|
||||
|
|
|
|||
4
.github/workflows/node-tests.yml
vendored
4
.github/workflows/node-tests.yml
vendored
|
|
@ -7,6 +7,10 @@ on:
|
|||
- master
|
||||
- stable*
|
||||
|
||||
concurrency:
|
||||
group: node-tests-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
changes:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
4
.github/workflows/openapi.yml
vendored
4
.github/workflows/openapi.yml
vendored
|
|
@ -7,6 +7,10 @@ on:
|
|||
- master
|
||||
- stable*
|
||||
|
||||
concurrency:
|
||||
group: openapi-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
openapi:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
4
.github/workflows/performance.yml
vendored
4
.github/workflows/performance.yml
vendored
|
|
@ -2,6 +2,10 @@ name: Performance testing
|
|||
on:
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: performance-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
performance-testing:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
4
.github/workflows/s3-external.yml
vendored
4
.github/workflows/s3-external.yml
vendored
|
|
@ -10,6 +10,10 @@ on:
|
|||
paths:
|
||||
- 'apps/files_external/**'
|
||||
|
||||
concurrency:
|
||||
group: s3-external-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
APP_NAME: files_external
|
||||
|
||||
|
|
|
|||
4
.github/workflows/s3-primary-integration.yml
vendored
4
.github/workflows/s3-primary-integration.yml
vendored
|
|
@ -16,6 +16,10 @@ on:
|
|||
- master
|
||||
- stable*
|
||||
|
||||
concurrency:
|
||||
group: s3-external-integration-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
s3-primary-integration-tests-minio:
|
||||
runs-on: ubuntu-20.04
|
||||
|
|
|
|||
4
.github/workflows/s3-primary.yml
vendored
4
.github/workflows/s3-primary.yml
vendored
|
|
@ -16,6 +16,10 @@ on:
|
|||
- master
|
||||
- stable*
|
||||
|
||||
concurrency:
|
||||
group: s3-primary-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
s3-primary-tests-minio:
|
||||
runs-on: ubuntu-20.04
|
||||
|
|
|
|||
4
.github/workflows/sftp.yml
vendored
4
.github/workflows/sftp.yml
vendored
|
|
@ -13,6 +13,10 @@ on:
|
|||
env:
|
||||
APP_NAME: files_external
|
||||
|
||||
concurrency:
|
||||
group: sftp-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
sftp-tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
4
.github/workflows/smb-kerberos.yml
vendored
4
.github/workflows/smb-kerberos.yml
vendored
|
|
@ -12,6 +12,10 @@ on:
|
|||
- 'apps/files_external/**'
|
||||
- '.github/workflows/smb-kerberos.yml'
|
||||
|
||||
concurrency:
|
||||
group: smb-kerberos-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
smb-kerberos-tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
4
.github/workflows/static-code-analysis.yml
vendored
4
.github/workflows/static-code-analysis.yml
vendored
|
|
@ -7,6 +7,10 @@ on:
|
|||
- master
|
||||
- stable*
|
||||
|
||||
concurrency:
|
||||
group: static-code-analysis-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
static-code-analysis:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Reference in a new issue