Skip to content

Commit ec2f0f5

Browse files
committed
concurrency support
1 parent c3b6a49 commit ec2f0f5

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/snapshot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
branches:
88
- development
99

10+
#Cancel running builds if another push to branch is made while this build is running
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
13+
cancel-in-progress: true
14+
1015
jobs:
1116
#############################################
1217
# Tests First baby! We fail, no build :(

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_call:
77
secrets:
88
SLACK_WEBHOOK_URL:
9-
required: true
9+
required: false
1010

1111
jobs:
1212
tests:

0 commit comments

Comments
 (0)