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: 5 additions & 0 deletions .github/workflows/zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
outputs:
should_package: ${{ steps.check.outputs.should_package }}
steps:
- name: Fail workflow if PINNED_RUN_ID is set on a schedule
if: github.event_name == 'schedule' && env.PINNED_RUN_ID != ''
run: |
echo "ERROR: PINNED_RUN_ID is set for a scheduled run. Unset it to allow the workflow to proceed."
exit 1
- name: Check if packaging should be skipped
id: check
run: |
Expand Down
Loading