This is an automated email from the ASF dual-hosted git repository.
Aias00 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shenyu.git
The following commit(s) were added to refs/heads/master by this push:
new 2974ec34a5 infra(ci): add concurrency to cancel superseded CI/test
runs (#6432)
2974ec34a5 is described below
commit 2974ec34a5a1e89883eeb5212ce48bea667ffe80
Author: Duansg <[email protected]>
AuthorDate: Thu Jul 16 15:08:17 2026 +0800
infra(ci): add concurrency to cancel superseded CI/test runs (#6432)
Co-authored-by: aias00 <[email protected]>
---
.github/workflows/ci.yml | 4 ++++
.github/workflows/codeql-analysis.yml | 4 ++++
.github/workflows/e2e-k8s.yml | 4 ++++
.github/workflows/integrated-test-k8s-ingress.yml | 4 ++++
.github/workflows/integrated-test.yml | 4 ++++
.github/workflows/k8s-examples-http.yml | 4 ++++
6 files changed, 24 insertions(+)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 66975ec1af..5d18776c90 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -21,6 +21,10 @@ on:
branches:
- master
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number ||
github.ref }}
+ cancel-in-progress: true
+
jobs:
build:
strategy:
diff --git a/.github/workflows/codeql-analysis.yml
b/.github/workflows/codeql-analysis.yml
index 510fbea7a5..50ae4f1724 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -25,6 +25,10 @@ on:
paths:
- '**/*.java'
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number ||
github.ref }}
+ cancel-in-progress: true
+
jobs:
analyze:
name: Analyze
diff --git a/.github/workflows/e2e-k8s.yml b/.github/workflows/e2e-k8s.yml
index ae7fcec23c..e5a46c6675 100644
--- a/.github/workflows/e2e-k8s.yml
+++ b/.github/workflows/e2e-k8s.yml
@@ -21,6 +21,10 @@ on:
branches:
- master
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number ||
github.ref }}
+ cancel-in-progress: true
+
jobs:
changes:
runs-on: ubuntu-latest
diff --git a/.github/workflows/integrated-test-k8s-ingress.yml
b/.github/workflows/integrated-test-k8s-ingress.yml
index dafb68ef6e..f726c13012 100644
--- a/.github/workflows/integrated-test-k8s-ingress.yml
+++ b/.github/workflows/integrated-test-k8s-ingress.yml
@@ -21,6 +21,10 @@ on:
branches:
- master
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number ||
github.ref }}
+ cancel-in-progress: true
+
jobs:
build:
strategy:
diff --git a/.github/workflows/integrated-test.yml
b/.github/workflows/integrated-test.yml
index ee17faf034..6036eacc81 100644
--- a/.github/workflows/integrated-test.yml
+++ b/.github/workflows/integrated-test.yml
@@ -21,6 +21,10 @@ on:
branches:
- master
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number ||
github.ref }}
+ cancel-in-progress: true
+
jobs:
build:
strategy:
diff --git a/.github/workflows/k8s-examples-http.yml
b/.github/workflows/k8s-examples-http.yml
index d8803f57bc..08d2037cab 100644
--- a/.github/workflows/k8s-examples-http.yml
+++ b/.github/workflows/k8s-examples-http.yml
@@ -21,6 +21,10 @@ on:
branches:
- master
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number ||
github.ref }}
+ cancel-in-progress: true
+
jobs:
k8s-examples-http:
runs-on: ubuntu-latest