You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2022/12/13 09:25:58 UTC

[flink-connector-kafka] 01/03: [FLINK-30353][ci] Limit concurrency

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

chesnay pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-connector-kafka.git

commit e253f0cdf596e14c540501d928da3315f0618619
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Tue Dec 13 10:25:08 2022 +0100

     [FLINK-30353][ci] Limit concurrency
---
 .github/workflows/push_pr.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/push_pr.yml b/.github/workflows/push_pr.yml
index 7a9ecba..8860f06 100644
--- a/.github/workflows/push_pr.yml
+++ b/.github/workflows/push_pr.yml
@@ -18,6 +18,9 @@
 
 name: Build flink-connector-kafka
 on: [push, pull_request]
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
 jobs:
   compile_and_test:
     uses: ./.github/workflows/ci.yml