We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fc7a9b commit 634ae4bCopy full SHA for 634ae4b
.github/workflows/maven-acceptance-wide.yml
@@ -10,9 +10,8 @@ on:
10
workflow_dispatch:
11
12
concurrency:
13
- group: ${{ github.workflow }}-${{ github.ref }}
14
- cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main' }}
15
-
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ cancel-in-progress: ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'ci:full') }}
16
jobs:
17
build:
18
runs-on: [ubuntu-latest]
0 commit comments