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

kunni pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-cdc.git


The following commit(s) were added to refs/heads/master by this push:
     new 376f79512 [FLINK-39038][infra] Limit GitHub actions max parallelism 
and workflow triggers (#4263)
376f79512 is described below

commit 376f79512c123adc27c5b2c128ede08cf61e825c
Author: yuxiqian <[email protected]>
AuthorDate: Mon Feb 9 09:50:46 2026 +0800

    [FLINK-39038][infra] Limit GitHub actions max parallelism and workflow 
triggers (#4263)
---
 .github/workflows/flink_cdc_base.yml       | 1 +
 .github/workflows/flink_cdc_ci.yml         | 1 +
 .github/workflows/flink_cdc_ci_nightly.yml | 1 +
 .github/workflows/label.yml                | 6 +++++-
 4 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/flink_cdc_base.yml 
b/.github/workflows/flink_cdc_base.yml
index 62d6cbb8f..c4410bf94 100644
--- a/.github/workflows/flink_cdc_base.yml
+++ b/.github/workflows/flink_cdc_base.yml
@@ -47,6 +47,7 @@ jobs:
     runs-on: ubuntu-latest
     timeout-minutes: 120
     strategy:
+      max-parallel: 20
       fail-fast: false
       matrix:
         java-version: ${{ fromJSON(inputs.java-versions) }}
diff --git a/.github/workflows/flink_cdc_ci.yml 
b/.github/workflows/flink_cdc_ci.yml
index 7f4ee846c..9a5da5434 100644
--- a/.github/workflows/flink_cdc_ci.yml
+++ b/.github/workflows/flink_cdc_ci.yml
@@ -77,6 +77,7 @@ jobs:
       modules: "['mysql-source', 'postgres-source, oceanbase-source, tidb, 
vitess', 'oracle, sqlserver', 'db2, mongodb']"
   pipeline_e2e:
     strategy:
+      max-parallel: 2
       fail-fast: false
       matrix:
         parallelism: [ 1, 4 ]
diff --git a/.github/workflows/flink_cdc_ci_nightly.yml 
b/.github/workflows/flink_cdc_ci_nightly.yml
index b92ed6067..df2e77c1c 100644
--- a/.github/workflows/flink_cdc_ci_nightly.yml
+++ b/.github/workflows/flink_cdc_ci_nightly.yml
@@ -71,6 +71,7 @@ jobs:
   pipeline_e2e:
     if: github.repository == 'apache/flink-cdc'
     strategy:
+      max-parallel: 2
       fail-fast: false
       matrix:
         parallelism: [ 1, 4 ]
diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml
index 4bc3188e6..b87a3b4c2 100644
--- a/.github/workflows/label.yml
+++ b/.github/workflows/label.yml
@@ -21,7 +21,11 @@
 # https://github.com/actions/labeler
 
 name: Labeler
-on: [pull_request_target]
+on:
+  pull_request:
+    branches:
+      - master
+      - release-*
 
 jobs:
   label:

Reply via email to