Skip to content

Commit 99e96ec

Browse files
sylvansysclaude
andcommitted
fix: Ensure comment posts before CI fails
Add `if: always()` to post-comment steps so review results are posted even when the reviewer action finds failures. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c9ccaa0 commit 99e96ec

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/constellos-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
github_token: ${{ secrets.GITHUB_TOKEN }}
5353

5454
- name: Post requirements comment
55-
if: matrix.agent == 'requirements'
55+
if: always() && matrix.agent == 'requirements'
5656
uses: ./.github/actions/review-comment
5757
with:
5858
review_name: Requirements
@@ -77,7 +77,7 @@ jobs:
7777
github_token: ${{ secrets.GITHUB_TOKEN }}
7878

7979
- name: Post code-quality comment
80-
if: matrix.agent == 'code-quality'
80+
if: always() && matrix.agent == 'code-quality'
8181
uses: ./.github/actions/review-comment
8282
with:
8383
review_name: Code Quality

0 commit comments

Comments
 (0)