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.
.yml
1 parent ac20b94 commit 5e91b29Copy full SHA for 5e91b29
.github/workflows/helm-release.yaml renamed to .github/workflows/helm-release.yml
.github/workflows/test.yml
@@ -6,6 +6,13 @@ on:
6
- r[0-9]+ # Trigger builds after a push to weekly branches
7
pull_request:
8
9
+concurrency:
10
+ # Cancel any running workflow for the same branch when new commits are pushed.
11
+ # We group both by ref_name (available when CI is triggered by a push to a branch/tag)
12
+ # and head_ref (available when CI is triggered by a PR).
13
+ group: "${{ github.ref_name }}-${{ github.head_ref }}"
14
+ cancel-in-progress: true
15
+
16
jobs:
17
test:
18
strategy:
0 commit comments