Skip to content

Commit de1327b

Browse files
authored
chore(ci) : do not cancel jobs on master (#8016)
1 parent 91205a5 commit de1327b

18 files changed

Lines changed: 19 additions & 21 deletions

.github/workflows/aiguard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
12-
cancel-in-progress: true
12+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1313

1414
env:
1515
MOCHA_OPTIONS: ${{ github.ref == 'refs/heads/master' && '--retries 1' || '' }}

.github/workflows/all-green.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
12-
cancel-in-progress: true
12+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1313

1414
jobs:
1515
all-green:

.github/workflows/apm-capabilities.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
concurrency:
1717
group: ${{ github.workflow }}-${{ inputs.latest-version }}-${{ github.ref || github.run_id }}
18-
cancel-in-progress: true
18+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1919

2020
env:
2121
MOCHA_OPTIONS: ${{ github.ref == 'refs/heads/master' && '--retries 1' || '' }}

.github/workflows/apm-integrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
concurrency:
1717
group: ${{ github.workflow }}-${{ inputs.latest-version }}-${{ github.ref || github.run_id }}
18-
cancel-in-progress: true
18+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1919

2020
env:
2121
MOCHA_OPTIONS: ${{ github.ref == 'refs/heads/master' && '--retries 1' || '' }}

.github/workflows/appsec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
concurrency:
1717
group: ${{ github.workflow }}-${{ inputs.latest-version }}-${{ github.ref || github.run_id }}
18-
cancel-in-progress: true
18+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1919

2020
env:
2121
MOCHA_OPTIONS: ${{ github.ref == 'refs/heads/master' && '--retries 1' || '' }}

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
concurrency:
99
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
10-
cancel-in-progress: true
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1111

1212
jobs:
1313
dependencies:

.github/workflows/debugger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
12-
cancel-in-progress: true
12+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1313

1414
env:
1515
MOCHA_OPTIONS: ${{ github.ref == 'refs/heads/master' && '--retries 1' || '' }}

.github/workflows/eslint-rules.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
concurrency:
1313
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
14-
cancel-in-progress: true
14+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1515

1616
jobs:
1717
eslint-rules:

.github/workflows/llmobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
concurrency:
1717
group: ${{ github.workflow }}-${{ inputs.latest-version }}-${{ github.ref || github.run_id }}
18-
cancel-in-progress: true
18+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1919

2020
env:
2121
MOCHA_OPTIONS: ${{ github.ref == 'refs/heads/master' && '--retries 1' || '' }}

.github/workflows/openfeature.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
12-
cancel-in-progress: true
12+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1313

1414
env:
1515
MOCHA_OPTIONS: ${{ github.ref == 'refs/heads/master' && '--retries 1' || '' }}

0 commit comments

Comments
 (0)