Skip to content

Commit

Permalink
Add non concurrency to Ubuntu CI workflow (#2075)
Browse files Browse the repository at this point in the history
Signed-off-by: Tal Regev <[email protected]>
  • Loading branch information
talregev authored Aug 17, 2023
1 parent caefed8 commit 900a6ea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ name: Ubuntu CI

on: [push, pull_request]

# Every time you make a push to your PR, it cancel immediately the previous checks,
# and start a new one. The other runner will be available more quickly to your PR.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
focal-ci:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 900a6ea

Please sign in to comment.