Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/scheduled-branch-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Scheduled branch tests

# GitHub only fires cron on the default branch, so stable branches get
# their periodic CI via dispatch from here. Dispatched runs count toward
# the per-branch flaky rate (CE144) on the CI health dashboard.
on:
schedule:
- cron: "0 2 * * *" # Nightly dispatch to stable branches for flaky rate data
workflow_dispatch:

permissions:
actions: write

jobs:
dispatch:
runs-on: ubuntu-latest
strategy:
matrix:
ref: [squid] # future stable branches: add here
steps:
- name: Dispatch tests.yml on ${{ matrix.ref }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh workflow run tests.yml --ref "${{ matrix.ref }}" --repo "${{ github.repository }}"
Loading