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:40:38 UTC

[flink-connector-pulsar] 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-pulsar.git

commit c5c922759ed0539063d4a9a48536e1ef87f4b7d1
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Tue Dec 13 10:39:33 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 759de4b..23a19fb 100644
--- a/.github/workflows/push_pr.yml
+++ b/.github/workflows/push_pr.yml
@@ -18,6 +18,9 @@
 
 name: Build flink-connector-pulsar
 on: [push, pull_request]
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
 jobs:
   compile_and_test:
     uses: ./.github/workflows/ci.yml