Skip to content

Commit

Permalink
ci: concurrency for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRBerg committed Sep 26, 2023
1 parent 8206193 commit d9c8669
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
name: book

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

on:
push:
branches: [main]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Tests

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

on:
push:
branches: [main, "release/**"]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ethereum-tests.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
concurrency:
cancel-in-progress: true
group: ${{github.workflow}}-${{github.ref}}

on:
push:
branches: [main, "release/**"]
Expand Down

0 comments on commit d9c8669

Please sign in to comment.