Skip to content

Commit

Permalink
chore: group actions on branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean McCaffery committed Sep 13, 2024
1 parent db948eb commit cdc6163
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/forge_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on: push
env:
FOUNDRY_PROFILE: ci

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

jobs:
check:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nextjs_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: push
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "nextjs"
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
Expand Down

0 comments on commit cdc6163

Please sign in to comment.