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

[flink-connector-aws] branch main updated: [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-aws.git


The following commit(s) were added to refs/heads/main by this push:
     new 1646ec0  [FLINK-30353][ci] Limit concurrency
1646ec0 is described below

commit 1646ec0b59e5244d37048225174d4cc3367acfc0
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Tue Dec 13 10:38:18 2022 +0100

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

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 97d9313..c2ad69f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -18,6 +18,9 @@
 
 name: Build flink-connector-aws
 on: [push, pull_request]
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
 jobs:
   compile_and_test:
     runs-on: ubuntu-latest