Skip to content

Commit

Permalink
Do not cancel in progress workflows (#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmbmb authored Aug 21, 2024
1 parent 2d2733f commit c76d4a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/docs-pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ on:
pull_request:
types: [closed]

concurrency: distilabel-docs
concurrency:
group: distilabel-docs
cancel-in-progress: false

jobs:
cleanup:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/docs-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:
- opened
- synchronize

concurrency: distilabel-docs
concurrency:
group: distilabel-docs
cancel-in-progress: false

jobs:
publish:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ on:
tags:
- "**"

concurrency: distilabel-docs
concurrency:
group: distilabel-docs
cancel-in-progress: false

jobs:
publish:
Expand Down

0 comments on commit c76d4a7

Please sign in to comment.