File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6767 # A cached release skips the fill: `build` (and with it `combine`)
6868 # keys off `run`, and the release job downloads the resolved
6969 # nightly's artifact and tags the commit it was built from.
70- run : ${{ (inputs.cached || inputs.commit != '') && 'false' || steps.check.outputs.run }}
70+ # Manual dispatches skip the new-commit check (its script may not
71+ # exist on the checked-out devnet branch) and default to `true`.
72+ run : ${{ (inputs.cached || inputs.commit != '') && 'false' || steps.check.outputs.run || 'true' }}
7173 build_matrix : ${{ steps.matrix.outputs.build_matrix }}
7274 feature_name : ${{ steps.matrix.outputs.feature_name }}
7375 combine_labels : ${{ steps.matrix.outputs.combine_labels }}
9597
9698 - name : Check for new commits (scheduled runs)
9799 id : check
100+ if : github.event_name == 'schedule'
98101 env :
99102 GH_TOKEN : ${{ github.token }}
100103 run : |
You can’t perform that action at this time.
0 commit comments