Skip to content

Commit fb6a163

Browse files
committed
fix when workflow runs
1 parent 609eaad commit fb6a163

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/full-ci-comment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ jobs:
4141

4242
comment-result:
4343
needs: [trigger-check, full-ci]
44-
if: always()
4544
runs-on: ubuntu-latest
45+
# if the trigger-check job ran (i.e., the comment was valid)
46+
if: needs.trigger-check.result != 'skipped'
4647
steps:
4748
- name: Comment on PR
4849
uses: actions/github-script@v7

0 commit comments

Comments
 (0)