Merge pull request #6153 from mempool/orangesurf/fix-identifier-type

Fix project review status identifier type
This commit is contained in:
mononaut 2025-12-08 17:27:56 +09:00 committed by GitHub
commit 636aa6b4c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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');