From 61aae586ee8a92fb62e3749c1c0a13cd3e1cb6d2 Mon Sep 17 00:00:00 2001 From: ggman12 Date: Thu, 12 Feb 2026 12:18:28 -0500 Subject: [PATCH] fix approve --- .github/workflows/approve-community-submission.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/approve-community-submission.yaml b/.github/workflows/approve-community-submission.yaml index 19f9fbd..6ce80b3 100644 --- a/.github/workflows/approve-community-submission.yaml +++ b/.github/workflows/approve-community-submission.yaml @@ -38,9 +38,10 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_REPOSITORY: ${{ github.repository }} + ISSUE_BODY: ${{ github.event.issue.body }} run: | python -m src.contributions.approve_submission \ --issue-number ${{ github.event.issue.number }} \ - --issue-body "${{ github.event.issue.body }}" \ + --issue-body "$ISSUE_BODY" \ --author "${{ steps.author.outputs.username }}" \ --author-id ${{ steps.author.outputs.user_id }}