Quellcode durchsuchen

ci: Specify concurrency to help with consecutive pushes

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v28.0.0beta1
Joas Schilling vor 8 Monaten
Ursprung
Commit
6def538154
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden

+ 4
- 0
.github/workflows/cypress.yml Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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

Laden…
Abbrechen
Speichern