From 9de5275030b294bdcc9950bc6fa05feb93a43953 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Wed, 2 Mar 2022 20:05:47 +0530 Subject: [PATCH] chore: add `test-flaky-ci` label to disable default workflow concurrency (#13813) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fbd002266..e25f33d1d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: ci on: [push, pull_request] concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + group: ${{ github.workflow }}-${{ !contains(github.event.pull_request.labels.*.name, 'test-flaky-ci') && github.head_ref || github.run_id }} cancel-in-progress: true jobs: