From c37ab838235c84bc62cc30255391c4f4ac2a59bd Mon Sep 17 00:00:00 2001 From: hailey Date: Thu, 24 Jul 2025 17:21:58 -0700 Subject: fix action (#8716) --- .github/workflows/pull-request-comment.yml | 4 ++-- 1 file 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 -- cgit 1.4.1