mirror of
https://github.com/mempool/mempool.git
synced 2026-08-13 12:33:11 +02:00
Merge pull request #6153 from mempool/orangesurf/fix-identifier-type
Fix project review status identifier type
This commit is contained in:
commit
636aa6b4c1
1 changed files with 3 additions and 3 deletions
6
.github/workflows/project-review-status.yml
vendored
6
.github/workflows/project-review-status.yml
vendored
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue