Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
535 B
26 lines
535 B
3 months ago
|
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, 27.x, 28.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 }}
|