Skip to content

Commit c87ba1e

Browse files
mkruskal-googlecopybara-github
authored andcommitted
Add daily continuous runs of all our supported release branches
PiperOrigin-RevId: 674469632
1 parent 7861f30 commit c87ba1e

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/staleness_check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26+
# TODO Remove this parameterization once the release branch testing is stable.
2627
branch: [main, 25.x, 27.x, 28.x]
2728
os: [{ name: Linux, value: ubuntu-latest}]
2829
exclude:
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Release Branch Tests
2+
3+
on:
4+
schedule:
5+
# Run daily at 10 AM UTC (2 AM PDT)
6+
- cron: 0 10 * * *
7+
workflow_dispatch:
8+
9+
permissions: {}
10+
11+
jobs:
12+
releases:
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
branch: [25.x, 27.x, 28.x]
17+
runs-on: ubuntu-latest
18+
permissions:
19+
actions: write
20+
env:
21+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
GH_REPO: ${{ github.repository }}
23+
name: Run Tests on ${{ matrix.branch }}
24+
steps:
25+
- run: gh workflow run test_runner.yml --ref ${{ matrix.branch }}

0 commit comments

Comments
 (0)