Browse Source

ci: Specify concurrency to help with consecutive pushes

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v28.0.0beta1
Joas Schilling 7 months ago
parent
commit
6def538154
No account linked to committer's email address

+ 4
- 0
.github/workflows/cypress.yml View File

@@ -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
- 0
.github/workflows/ftp.yml View File

@@ -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
- 0
.github/workflows/node-tests.yml View File

@@ -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
- 0
.github/workflows/openapi.yml View File

@@ -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
- 0
.github/workflows/performance.yml View File

@@ -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
- 0
.github/workflows/s3-external.yml View File

@@ -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
- 0
.github/workflows/s3-primary-integration.yml View File

@@ -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
- 0
.github/workflows/s3-primary.yml View File

@@ -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
- 0
.github/workflows/sftp.yml View File

@@ -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
- 0
.github/workflows/smb-kerberos.yml View File

@@ -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
- 0
.github/workflows/static-code-analysis.yml View File

@@ -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…
Cancel
Save