Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/release_fixtures.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ jobs:
# A cached release skips the fill: `build` (and with it `combine`)
# keys off `run`, and the release job downloads the resolved
# nightly's artifact and tags the commit it was built from.
run: ${{ (inputs.cached || inputs.commit != '') && 'false' || steps.check.outputs.run }}
# Manual dispatches skip the new-commit check (its script may not
# exist on the checked-out devnet branch) and default to `true`.
run: ${{ (inputs.cached || inputs.commit != '') && 'false' || steps.check.outputs.run || 'true' }}
build_matrix: ${{ steps.matrix.outputs.build_matrix }}
feature_name: ${{ steps.matrix.outputs.feature_name }}
combine_labels: ${{ steps.matrix.outputs.combine_labels }}
Expand Down Expand Up @@ -95,6 +97,7 @@ jobs:

- name: Check for new commits (scheduled runs)
id: check
if: github.event_name == 'schedule'
env:
GH_TOKEN: ${{ github.token }}
run: |
Expand Down
Loading