From ad18048db947ca0a47c7fa59b77718e3a06afafe Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Wed, 1 Jul 2026 12:10:19 +0200 Subject: [PATCH] chore(ci): limit tests_secondary label trigger to CQ1 (#41567) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Skn0tt <14912729+Skn0tt@users.noreply.github.com> --- .github/workflows/tests_secondary.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests_secondary.yml b/.github/workflows/tests_secondary.yml index ebd3a5b4c5aa0..5578693a677e3 100644 --- a/.github/workflows/tests_secondary.yml +++ b/.github/workflows/tests_secondary.yml @@ -22,6 +22,7 @@ permissions: jobs: test_mac: name: ${{ matrix.os }} (${{ matrix.browser }}) + if: ${{ github.event_name == 'push' || github.event.label.name == 'CQ1' }} environment: ${{ github.event_name == 'push' && 'allow-uploading-flakiness-results' || null }} strategy: fail-fast: false @@ -47,6 +48,7 @@ jobs: test_win: name: "Windows" + if: ${{ github.event_name == 'push' || github.event.label.name == 'CQ1' }} environment: ${{ github.event_name == 'push' && 'allow-uploading-flakiness-results' || null }} strategy: fail-fast: false @@ -66,6 +68,7 @@ jobs: test-package-installations-other-node-versions: name: "Installation Test ${{ matrix.os }} (${{ matrix.node_version }})" + if: ${{ github.event_name == 'push' || github.event.label.name == 'CQ1' }} environment: ${{ github.event_name == 'push' && 'allow-uploading-flakiness-results' || null }} runs-on: ${{ matrix.os }} strategy: