We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 106e9f8 commit 5edb680Copy full SHA for 5edb680
.github/workflows/zip.yml
@@ -56,6 +56,11 @@ jobs:
56
outputs:
57
should_package: ${{ steps.check.outputs.should_package }}
58
steps:
59
+ - name: Fail workflow if PINNED_RUN_ID is set on a schedule
60
+ if: github.event_name == 'schedule' && env.PINNED_RUN_ID != ''
61
+ run: |
62
+ echo "ERROR: PINNED_RUN_ID is set for a scheduled run. Unset it to allow the workflow to proceed."
63
+ exit 1
64
- name: Check if packaging should be skipped
65
id: check
66
run: |
0 commit comments