You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/05/25 06:48:22 UTC

[camel-k] branch main updated: chore(ci): Use github.ref instead of github.head_ref as concurrency group key

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
     new ab663c1  chore(ci): Use github.ref instead of github.head_ref as concurrency group key
ab663c1 is described below

commit ab663c17e942f0761d9d729301d77f1ca8e7052b
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Tue May 18 16:08:05 2021 +0200

    chore(ci): Use github.ref instead of github.head_ref as concurrency group key
---
 .github/workflows/build.yml      | 2 +-
 .github/workflows/builder.yml    | 2 +-
 .github/workflows/knative.yml    | 2 +-
 .github/workflows/kubernetes.yml | 2 +-
 .github/workflows/local.yml      | 2 +-
 .github/workflows/openshift.yml  | 2 +-
 .github/workflows/upgrade.yml    | 2 +-
 .github/workflows/validate.yml   | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index dc0a8c4..9ff81c0 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -40,7 +40,7 @@ on:
       - 'NOTICE'
 
 concurrency:
-  group: ${{ github.head_ref }}-${{ github.workflow }}
+  group: ${{ github.ref }}-${{ github.workflow }}
   cancel-in-progress: true
 
 jobs:
diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml
index 6a3e92f..db4dc2d 100644
--- a/.github/workflows/builder.yml
+++ b/.github/workflows/builder.yml
@@ -40,7 +40,7 @@ on:
       - 'NOTICE'
 
 concurrency:
-  group: ${{ github.head_ref }}-${{ github.workflow }}
+  group: ${{ github.ref }}-${{ github.workflow }}
   cancel-in-progress: true
 
 jobs:
diff --git a/.github/workflows/knative.yml b/.github/workflows/knative.yml
index 8d0c04b..e3b5dfa 100644
--- a/.github/workflows/knative.yml
+++ b/.github/workflows/knative.yml
@@ -40,7 +40,7 @@ on:
       - 'NOTICE'
 
 concurrency:
-  group: ${{ github.head_ref }}-${{ github.workflow }}
+  group: ${{ github.ref }}-${{ github.workflow }}
   cancel-in-progress: true
 
 jobs:
diff --git a/.github/workflows/kubernetes.yml b/.github/workflows/kubernetes.yml
index e83767a..e074b61 100644
--- a/.github/workflows/kubernetes.yml
+++ b/.github/workflows/kubernetes.yml
@@ -40,7 +40,7 @@ on:
       - 'NOTICE'
 
 concurrency:
-  group: ${{ github.head_ref }}-${{ github.workflow }}
+  group: ${{ github.ref }}-${{ github.workflow }}
   cancel-in-progress: true
 
 jobs:
diff --git a/.github/workflows/local.yml b/.github/workflows/local.yml
index 75c3607..0103a33 100644
--- a/.github/workflows/local.yml
+++ b/.github/workflows/local.yml
@@ -40,7 +40,7 @@ on:
       - 'NOTICE'
 
 concurrency:
-  group: ${{ github.head_ref }}-${{ github.workflow }}
+  group: ${{ github.ref }}-${{ github.workflow }}
   cancel-in-progress: true
 
 jobs:
diff --git a/.github/workflows/openshift.yml b/.github/workflows/openshift.yml
index 259e21d..e9acac3 100644
--- a/.github/workflows/openshift.yml
+++ b/.github/workflows/openshift.yml
@@ -40,7 +40,7 @@ on:
       - 'NOTICE'
 
 concurrency:
-  group: ${{ github.head_ref }}-${{ github.workflow }}
+  group: ${{ github.ref }}-${{ github.workflow }}
   cancel-in-progress: true
 
 jobs:
diff --git a/.github/workflows/upgrade.yml b/.github/workflows/upgrade.yml
index 4b9f946..1c6b0ff 100644
--- a/.github/workflows/upgrade.yml
+++ b/.github/workflows/upgrade.yml
@@ -40,7 +40,7 @@ on:
       - 'NOTICE'
 
 concurrency:
-  group: ${{ github.head_ref }}-${{ github.workflow }}
+  group: ${{ github.ref }}-${{ github.workflow }}
   cancel-in-progress: true
 
 jobs:
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml
index 24a15f0..32ffc07 100644
--- a/.github/workflows/validate.yml
+++ b/.github/workflows/validate.yml
@@ -28,7 +28,7 @@ on:
       - "release-*"
 
 concurrency:
-  group: ${{ github.head_ref }}-${{ github.workflow }}
+  group: ${{ github.ref }}-${{ github.workflow }}
   cancel-in-progress: true
 
 jobs: