Skip to content

Commit

Permalink
Disable workflow concurrency on branch
Browse files Browse the repository at this point in the history
  • Loading branch information
supersonicbyte committed Sep 18, 2024
1 parent 9971a63 commit c633107
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ on:
schedule:
- cron: "0 8 * * *"

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

jobs:
test-linux:
name: Test
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ on:
workflow_dispatch:
push:

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

jobs:
lint-front-end:
name: Lint Front-End
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/query-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ on:
workflow_dispatch:
push:

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

jobs:
test-linux:
name: Query Performance Test
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ on:
workflow_dispatch:
push:

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

jobs:
snapshots:
name: Image Snapshots
Expand Down

0 comments on commit c633107

Please sign in to comment.