We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d758510 commit 57adbdeCopy full SHA for 57adbde
.github/workflows/content-quality-assessment.yml
@@ -121,10 +121,11 @@ jobs:
121
cd pr-content
122
git remote add base https://github.com/${{ github.event.pull_request.base.repo.full_name }}.git
123
git fetch base ${{ github.event.pull_request.base.ref }}
124
- OUTPUT=$(node build/scripts/cqa/index.js --all 2>&1)
+ OUTPUT=$(node build/scripts/cqa/index.js --all 2>&1) || CQA_EXIT=$?
125
echo "output<<EOF" >> $GITHUB_OUTPUT
126
echo "$OUTPUT" >> $GITHUB_OUTPUT
127
echo "EOF" >> $GITHUB_OUTPUT
128
+ exit ${CQA_EXIT:-0}
129
130
- name: Post CQA checklist as PR comment
131
if: always()
0 commit comments