Skip to content

Commit e6ca293

Browse files
authored
Merge pull request #246 from co-cddo/fix/smoke-followup-yaml
Fix YAML parse error in smoke-override-followup workflow
2 parents 531ac0d + 459e9cb commit e6ca293

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/smoke-override-followup.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,9 @@ jobs:
4646
echo "PR #$num already has follow-up issue #$existing — skipping"
4747
continue
4848
fi
49+
body=$(printf 'PR #%s merged with the smoke-override-emergency label, bypassing the smoke gate. 48h have elapsed — please record the underlying regression resolution (smoke now green / scenario re-quarantined / etc.) and close this issue.\n\nPR: %s\nMerged: ~48h ago' "$num" "$url")
4950
gh issue create \
5051
--title "Follow-up: smoke-override-emergency on PR #$num ($title)" \
5152
--label smoke-override-followup \
52-
--body "PR #$num merged with the smoke-override-emergency label, bypassing the smoke gate. 48h have elapsed — please record the underlying regression's resolution (smoke now green / scenario re-quarantined / etc.) and close this issue.
53-
54-
PR: $url
55-
Merged: ~48h ago"
53+
--body "$body"
5654
done

0 commit comments

Comments
 (0)