From fe2125beba9759497a9b2ad9805454545eaace8e Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Tue, 2 Dec 2025 01:05:21 +0400 Subject: [PATCH] chore: fix issue validation workflow --- .github/workflows/issue-validation.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue-validation.yml b/.github/workflows/issue-validation.yml index b4a336c..dd78afd 100644 --- a/.github/workflows/issue-validation.yml +++ b/.github/workflows/issue-validation.yml @@ -115,13 +115,14 @@ jobs: - name: Parse validation result and take action env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + RESPONSE_FILE: ${{ steps.validate.outputs.response-file }} + RESPONSE: ${{ steps.validate.outputs.response }} run: | # Prefer reading from the response file to avoid output truncation - RESPONSE_FILE='${{ steps.validate.outputs.response-file }}' if [ -n "$RESPONSE_FILE" ] && [ -f "$RESPONSE_FILE" ]; then RAW_OUTPUT=$(cat "$RESPONSE_FILE") else - RAW_OUTPUT='${{ steps.validate.outputs.response }}' + RAW_OUTPUT="$RESPONSE" fi # Extract JSON if wrapped in markdown code fences; otherwise use raw