Skip to content

Commit c4a882f

Browse files
themr0cclaude
andauthored
[RHIDP-12788]: Fix CQA workflow PR comment failing on backticks (#1951)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3b1940b commit c4a882f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/content-quality-assessment.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,12 @@ jobs:
128128
- name: Post CQA checklist as PR comment
129129
if: always()
130130
uses: actions/github-script@v7
131+
env:
132+
CQA_OUTPUT: ${{ steps.cqa-checklist.outputs.output }}
131133
with:
132134
github-token: ${{ secrets.RHDH_BOT_TOKEN || secrets.GITHUB_TOKEN }}
133135
script: |
134-
const cqaOutput = `${{ steps.cqa-checklist.outputs.output }}`;
136+
const cqaOutput = process.env.CQA_OUTPUT;
135137
136138
let comment = '## Content Quality Assessment Results\n\n';
137139
comment += '```\n';

0 commit comments

Comments
 (0)