From 496afad744ddb329db9198dd7442732a382cdea7 Mon Sep 17 00:00:00 2001 From: orangesurf <91332210+orangesurf@users.noreply.github.com> Date: Mon, 8 Dec 2025 17:09:38 +0900 Subject: [PATCH] Fix project review status identifier type --- .github/workflows/project-review-status.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/project-review-status.yml b/.github/workflows/project-review-status.yml index 7a974ba22..730208e78 100644 --- a/.github/workflows/project-review-status.yml +++ b/.github/workflows/project-review-status.yml @@ -75,10 +75,10 @@ jobs: // STATUS_FIELD_ID: The "Status" field's unique identifier // REVIEW_NEEDED_OPTION_ID: The "Review Needed" option's unique identifier await github.graphql(mutation, { - projectId: "${{ vars.PROJECT_ID }}", + projectId: "${{ secrets.PROJECT_ID }}", itemId: projectItem.id, - fieldId: "${{ vars.STATUS_FIELD_ID }}", - optionId: "${{ vars.REVIEW_NEEDED_OPTION_ID }}" + fieldId: "${{ secrets.STATUS_FIELD_ID }}", + optionId: "${{ secrets.REVIEW_NEEDED_OPTION_ID }}" }); console.log('Successfully updated project status to Review Needed');