dep-protobuf/.github/workflows/test_release_branches.yml
Hong Shin 45f0eaa694 add 33.x to test_release_branches
#test-continuous

PiperOrigin-RevId: 813899513
2025-10-01 14:00:24 -07:00

25 lines
535 B
YAML

name: Release Branch Tests
on:
schedule:
# Run daily at 10 AM UTC (2 AM PDT)
- cron: 0 10 * * *
workflow_dispatch:
permissions: {}
jobs:
releases:
strategy:
fail-fast: false
matrix:
branch: [25.x, 29.x, 33.x]
runs-on: ubuntu-latest
permissions:
actions: write
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
name: Run Tests on ${{ matrix.branch }}
steps:
- run: gh workflow run test_runner.yml --ref ${{ matrix.branch }}