This is an automated email from the ASF dual-hosted git repository. martijnvisser pushed a commit to branch v3.0 in repository https://gitbox.apache.org/repos/asf/flink-connector-jdbc.git
commit 42f6a98b28049bfa101b483a14c11324ea1c71ce Author: Chesnay Schepler <[email protected]> AuthorDate: Tue Dec 13 10:27:02 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 e679db6..b066b7c 100644 --- a/.github/workflows/push_pr.yml +++ b/.github/workflows/push_pr.yml @@ -18,6 +18,9 @@ name: Build flink-connector-jdbc on: [push, pull_request] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: compile_and_test: uses: ./.github/workflows/ci.yml
