Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
ci: concurrency for github actions (bluealloy#750)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRBerg authored Sep 27, 2023
1 parent d03dfcb commit d2a066b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
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
7 changes: 6 additions & 1 deletion .github/workflows/ethereum-tests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
name: Ethereum Tests

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

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

name: Ethereum Tests

jobs:
tests-stable:
Expand Down

0 comments on commit d2a066b

Please sign in to comment.