Skip to content

Commit 4dfa0b4

Browse files
lostindarkCopilot
andcommitted
fix: skip conclusion check on manual dispatch in release-highlights
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 8571463 commit 4dfa0b4

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

.github/workflows/release-highlights.lock.yml

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/release-highlights.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ steps:
2626
run: |
2727
set -e
2828
29-
# Only proceed if the triggering workflow succeeded
30-
if [ "$WORKFLOW_CONCLUSION" != "success" ]; then
29+
# Only proceed if the triggering workflow succeeded (skip check for manual dispatch)
30+
if [ -n "$WORKFLOW_CONCLUSION" ] && [ "$WORKFLOW_CONCLUSION" != "success" ]; then
3131
echo "Release workflow did not succeed. Skipping."
3232
exit 1
3333
fi

0 commit comments

Comments
 (0)