Skip to content

Commit

Permalink
disable concurrency on long running ci jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Nov 9, 2022
1 parent ebf4be3 commit a81cc4f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/cli.yml
Expand Up @@ -11,6 +11,10 @@ on:
- pyproject.toml
- poetry.lock

concurrency:
group: environment-${{ github.ref }}
cancel-in-progress: true

jobs:
mdx:
strategy:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/e2e.yml
Expand Up @@ -13,6 +13,10 @@ on:
- staging
- trying

concurrency:
group: environment-${{ github.ref }}
cancel-in-progress: true

jobs:
e2e:
strategy:
Expand Down

0 comments on commit a81cc4f

Please sign in to comment.