From 2a197cc6279751e7262d652bd1021e2361b8e8d2 Mon Sep 17 00:00:00 2001 From: Stevenson Michel Date: Thu, 18 Jun 2026 09:02:00 -0400 Subject: [PATCH] Update CI schedule to 11/17 UTC and add stable-2.7 dispatch (#16507) Co-authored-by: Claude Opus 4.6 (1M context) --- .github/workflows/ci.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0561df2711..095610669f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ on: branches: - devel # needed to publish code coverage post-merge schedule: - - cron: '0 12,18 * * 1-5' + - cron: '0 11,17 * * 1-5' workflow_dispatch: {} jobs: trigger-release-branches: @@ -36,12 +36,20 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_REPO: ${{ github.repository }} + - name: Trigger CI on stable-2.7 + id: dispatch_stable_27 + continue-on-error: true + run: gh workflow run ci.yml --ref stable-2.7 + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_REPO: ${{ github.repository }} - name: Check dispatch results - if: steps.dispatch_release_46.outcome == 'failure' || steps.dispatch_stable_26.outcome == 'failure' + if: steps.dispatch_release_46.outcome == 'failure' || steps.dispatch_stable_26.outcome == 'failure' || steps.dispatch_stable_27.outcome == 'failure' run: | echo "One or more dispatches failed:" echo " release_4.6: ${{ steps.dispatch_release_46.outcome }}" echo " stable-2.6: ${{ steps.dispatch_stable_26.outcome }}" + echo " stable-2.7: ${{ steps.dispatch_stable_27.outcome }}" exit 1 common-tests: