We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3b6a49 commit ec2f0f5Copy full SHA for ec2f0f5
.github/workflows/snapshot.yml
@@ -7,6 +7,11 @@ on:
7
branches:
8
- development
9
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
+
15
jobs:
16
#############################################
17
# Tests First baby! We fail, no build :(
.github/workflows/tests.yml
@@ -6,7 +6,7 @@ on:
6
workflow_call:
secrets:
SLACK_WEBHOOK_URL:
- required: true
+ required: false
tests:
0 commit comments