diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-03-02 20:05:47 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-02 20:05:47 +0530 |
commit | 9de5275030b294bdcc9950bc6fa05feb93a43953 (patch) | |
tree | 10ee79e66c74294b555152ec5c513da580a476fa | |
parent | d8489b6f1fdefa24ff0a4dfe693520d7f7b727c4 (diff) |
chore: add `test-flaky-ci` label to disable default workflow concurrency (#13813)
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fbd00226..e25f33d1d 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: |