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 c1bd648 commit 9cc761eCopy full SHA for 9cc761e
.github/workflows/docker-image.yml
@@ -6,6 +6,12 @@ on:
6
pull_request:
7
branches: ["main"]
8
9
+# To cancel a currently running workflow from the same PR, branch, or tag
10
+# when a new workflow is triggered.
11
+concurrency:
12
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
13
+ cancel-in-progress: true
14
+
15
jobs:
16
17
build:
.github/workflows/maven.yml
@@ -14,6 +14,12 @@ on:
18
19
20
21
22
23
24
25
runs-on: ubuntu-latest
0 commit comments