Skip to content

Commit

Permalink
ci: we don't need parallel runs for the same branch, let's save the r…
Browse files Browse the repository at this point in the history
…esources
  • Loading branch information
fengelniederhammer committed Oct 10, 2023
1 parent 10b6ea3 commit aa81bc4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ defaults:
run:
working-directory: ./backend

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

jobs:
Tests:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: e2e
on:
push:

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

jobs:
E2ETests:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ defaults:
run:
working-directory: ./website

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

jobs:
checks:
name: Check format
Expand Down

0 comments on commit aa81bc4

Please sign in to comment.