From 8a52afdbe94e392323b61f331da561ade6d054e3 Mon Sep 17 00:00:00 2001 From: Wisaroot Lertthaweedech <66859294+wislertt@users.noreply.github.com> Date: Thu, 20 Nov 2025 09:27:57 +0700 Subject: [PATCH] fix: fix github-tf-pull-request find comment --- build/github-tf-pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/github-tf-pull-request.yaml b/build/github-tf-pull-request.yaml index 6defed40b..e9180ea80 100644 --- a/build/github-tf-pull-request.yaml +++ b/build/github-tf-pull-request.yaml @@ -78,7 +78,7 @@ jobs: issue_number: context.issue.number, }) const botComment = comments.find(comment => { - return comment.user.type === 'Bot' && comment.body.includes('Terraform Initialization') + return comment.user.type === 'Bot' && comment.body.includes('Terraform Plan Validate All') }) const run_url = process.env.GITHUB_SERVER_URL + '/' + process.env.GITHUB_REPOSITORY + '/actions/runs/' + process.env.GITHUB_RUN_ID