Skip to content

Commit c76d4a7

Browse files
authored
Do not cancel in progress workflows (#919)
1 parent 2d2733f commit c76d4a7

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/docs-pr-close.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ on:
44
pull_request:
55
types: [closed]
66

7-
concurrency: distilabel-docs
7+
concurrency:
8+
group: distilabel-docs
9+
cancel-in-progress: false
810

911
jobs:
1012
cleanup:

.github/workflows/docs-pr.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ on:
66
- opened
77
- synchronize
88

9-
concurrency: distilabel-docs
9+
concurrency:
10+
group: distilabel-docs
11+
cancel-in-progress: false
1012

1113
jobs:
1214
publish:

.github/workflows/docs.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ on:
88
tags:
99
- "**"
1010

11-
concurrency: distilabel-docs
11+
concurrency:
12+
group: distilabel-docs
13+
cancel-in-progress: false
1214

1315
jobs:
1416
publish:

0 commit comments

Comments
 (0)