File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1414name : Downstream Protobuf Compatibility Check Nightly
1515jobs :
1616 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'
17+ # This job runs if any of the three conditions match:
18+ # 1. PR is raised from Release-Please (PR comes from branch: release-please--branches-{branch_name})
19+ # 2. Job is invoked by the nightly job (scheduled event)
20+ # 3. Job is manually invoked via Github UI (workflow_dispatch event)
21+ if : github.head_ref == 'release-please--branches--main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
1922 runs-on : ubuntu-22.04
2023 strategy :
2124 fail-fast : false
You can’t perform that action at this time.
0 commit comments