fix: wrap placeholders in backticks in smoke-codex.md#1310
Conversation
Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com>
|
Smoke test results:
Warning
|
🏗️ Build Test Suite Results
Overall: 8/8 ecosystems passed — ✅ PASS
|
There was a problem hiding this comment.
Pull request overview
Fixes MarkdownLint CI failures in the Codex smoke workflow instructions by preventing __GH_AW_*__ placeholders from being parsed as underscore-based bold, keeping the workflow body compliant with MD050.
Changes:
- Wrapped
__GH_AW_GITHUB_REPOSITORY__placeholders in inline code spans so__is treated literally. - Converted the GH CLI args example from a quoted string to an inline code span for consistent formatting.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
…1305) * Initial plan * feat(cli): auto-inject GH_HOST from GITHUB_SERVER_URL - Add extractGhHostFromServerUrl() helper to extract hostname from GITHUB_SERVER_URL - Auto-inject GH_HOST env var in agent container when GHES/GHEC detected - Add comprehensive unit tests for extractGhHostFromServerUrl() - Add integration tests for GH_HOST auto-injection - Ensures gh CLI inside agent container targets correct GitHub instance Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> * docs: add GH_HOST auto-injection documentation - Document automatic GH_HOST environment variable injection - Update GHEC and GHES configuration sections - Explain how GH_HOST ensures gh CLI targets correct instance Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> * fix: make smoke-codex instructions clearly identifiable as workflow task for Codex model (#1307) * Initial plan * fix: make smoke-codex instructions clearly identifiable as workflow task for Codex model Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> * fix: match case-insensitive AWF binary step name in postprocessor (#1309) * Initial plan * fix: match case-insensitive AWF binary step name in postprocessor Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> * fix: wrap placeholders in backticks in smoke-codex.md (#1310) * Initial plan * fix: wrap placeholders in backticks in smoke-codex.md Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> --------- Co-authored-by: anthropic-code-agent[bot] <242468646+Claude@users.noreply.github.com> Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> Co-authored-by: Landon Cox <landon.cox@microsoft.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Markdown Lint CI was failing because
__GH_AW_GITHUB_REPOSITORY__placeholders in prose were interpreted as underscore-style bold (__text__), violating MD050 which requires asterisk-style bold.Changes
.github/workflows/smoke-codex.md: Wrapped all bare__GH_AW_GITHUB_REPOSITORY__occurrences in backtick code spans; converted the double-quoted args string to a backtick code span for consistencyCode spans are not parsed for inline markdown formatting, so the
__delimiters are treated as literal characters. The placeholders are still substituted at runtime bysubstitute_placeholders.cjsas before.Original prompt
💬 Send tasks to Copilot coding agent from Slack and Teams to turn conversations into code. Copilot posts an update in your thread when it's finished.