Skip to content

Commit

Permalink
concurrency support
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Apr 8, 2024
1 parent c3b6a49 commit ec2f0f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
branches:
- development

#Cancel running builds if another push to branch is made while this build is running
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
#############################################
# Tests First baby! We fail, no build :(
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_call:
secrets:
SLACK_WEBHOOK_URL:
required: true
required: false

jobs:
tests:
Expand Down

0 comments on commit ec2f0f5

Please sign in to comment.