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.
2 parents 369f475 + 3614a99 commit d1cd064Copy full SHA for d1cd064
.github/workflows/run-tests.yml
@@ -5,6 +5,12 @@ on:
5
pull_request:
6
types: [opened, synchronize, reopened]
7
8
+# To cancel a currently running workflow from the same PR, branch or tag when a new workflow is triggered
9
+# https://stackoverflow.com/a/72408109
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12
+ cancel-in-progress: true
13
+
14
jobs:
15
build:
16
runs-on: self-hosted
0 commit comments