File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 66 workflow_dispatch :
77 inputs :
88 protobuf_runtime_versions :
9- description : ' Comma separated list of Protobuf-Java versions (i.e. "3.25.x","4.x.y")'
9+ description : ' Comma separated list of Protobuf-Java versions (i.e. "3.25.x","4.x.y").
10+ Note: Surround each version in the list with quotes ("")'
1011 required : true
1112 schedule :
1213 - cron : ' 0 1 * * *' # Nightly at 1am
1314
1415name : Downstream Protobuf Compatibility Check Nightly
1516jobs :
1617 downstream-protobuf-test :
17- # Checks if PR comes from Release-Please branch or if invoked from nightly job
18- if : github.head_ref == 'release-please--branches--main' || github.event_name == 'schedule'
18+ # This job runs if any of the three conditions match:
19+ # 1. PR is raised from Release-Please (PR comes from branch: release-please--branches-main)
20+ # 2. Job is invoked by the nightly job (scheduled event)
21+ # 3. Job is manually invoked via Github UI (workflow_dispatch event)
22+ if : github.head_ref == 'release-please--branches--main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
1923 runs-on : ubuntu-22.04
2024 strategy :
2125 fail-fast : false
You can’t perform that action at this time.
0 commit comments