diff options
author | hailey <me@haileyok.com> | 2025-07-24 17:21:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-24 17:21:58 -0700 |
commit | c37ab838235c84bc62cc30255391c4f4ac2a59bd (patch) | |
tree | d357f5bf7605c6f70d3404845e83cde15b85d29f /.github | |
parent | 26755445e375211e7b223fa86393813d68f93abc (diff) | |
download | voidsky-c37ab838235c84bc62cc30255391c4f4ac2a59bd.tar.zst |
fix action (#8716)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pull-request-comment.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/pull-request-comment.yml b/.github/workflows/pull-request-comment.yml index 2233fbbba..1a0ffe708 100644 --- a/.github/workflows/pull-request-comment.yml +++ b/.github/workflows/pull-request-comment.yml @@ -18,8 +18,8 @@ jobs: env: COMMENT: ${{ github.event.comment.body }} run: | - if [[ "$TITLE" == *"@github-actions"* ]] || \ - [[ "$TITLE" == *"github-actions[bot]"* ]]; then + if [[ "$COMMENT" == *"@github-actions"* ]] || \ + [[ "$COMMENT" == *"github-actions[bot]"* ]]; then bot_mentioned=true else bot_mentioned=false |