We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b1940b commit c4a882fCopy full SHA for c4a882f
1 file changed
.github/workflows/content-quality-assessment.yml
@@ -128,10 +128,12 @@ jobs:
128
- name: Post CQA checklist as PR comment
129
if: always()
130
uses: actions/github-script@v7
131
+ env:
132
+ CQA_OUTPUT: ${{ steps.cqa-checklist.outputs.output }}
133
with:
134
github-token: ${{ secrets.RHDH_BOT_TOKEN || secrets.GITHUB_TOKEN }}
135
script: |
- const cqaOutput = `${{ steps.cqa-checklist.outputs.output }}`;
136
+ const cqaOutput = process.env.CQA_OUTPUT;
137
138
let comment = '## Content Quality Assessment Results\n\n';
139
comment += '```\n';
0 commit comments