From e5653c9d9bce633377a491f0abc93a1968033b6e Mon Sep 17 00:00:00 2001 From: Bhuvnesh Verma <99537126+MasterBhuvnesh@users.noreply.github.com> Date: Wed, 6 Aug 2025 23:19:32 +0530 Subject: [PATCH] Update bug-reproduction-check.yml fixed an issue in the GitHub Actions workflow where the AI response output was not passed correctly to the comment step by updating the environment variable assignment to use ${{ steps.analyze-issue.outputs.response }} instead of the literal string. --- workflows/bug-reproduction-check/bug-reproduction-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflows/bug-reproduction-check/bug-reproduction-check.yml b/workflows/bug-reproduction-check/bug-reproduction-check.yml index 9d7e21c..c5b59a2 100644 --- a/workflows/bug-reproduction-check/bug-reproduction-check.yml +++ b/workflows/bug-reproduction-check/bug-reproduction-check.yml @@ -49,7 +49,7 @@ jobs: if: contains(join(github.event.issue.labels.*.name, ','), 'bug') && steps.analyze-issue.outputs.response != 'pass' uses: actions/github-script@v7 env: - AI_RESPONSE: steps.analyze-issue.outputs.response + AI_RESPONSE: ${{ steps.analyze-issue.outputs.response }} with: script: | const issue_number = context.issue.number