bugfix: Correct project item ID retrieval in GitHub Actions workflow

This commit is contained in:
santiagosayshey
2024-06-28 07:48:26 +09:30
parent 1cd14d3d04
commit 20ee6ae968

View File

@@ -39,7 +39,7 @@ jobs:
} }
} }
} }
}' -f project=$PROJECT_ID -f issue=$ISSUE_ID --jq '.data.node.items.nodes[] | select(.content.id == env.ISSUE_ID) | .id') }' -f project=$PROJECT_ID -f issue=$ISSUE_ID --jq '.data.node.items.nodes[] | select(.content.id == $ISSUE_ID) | .id')
echo "PROJECT_ITEM_ID=$item_id" >> $GITHUB_OUTPUT echo "PROJECT_ITEM_ID=$item_id" >> $GITHUB_OUTPUT
- name: Set component, type, and status - name: Set component, type, and status