diff --git a/.github/workflows/issue-triage.yml b/.github/workflows/issue-triage.yml index 5a98efe0eb8..489f9f84365 100644 --- a/.github/workflows/issue-triage.yml +++ b/.github/workflows/issue-triage.yml @@ -9,7 +9,8 @@ env: OWNER: ${{ github.repository_owner }} REPOSITORY: ${{ github.repository }} - PROJECT_ID: 39 + PROJECT_NUMBER: 39 + PROJECT_ID: PVT_kwDOAYA3Ss1Nvw ITEM_FETCH_LIMIT: 1200 AREA_FIELD_ID: PVTSSF_lADOAYA3Ss1Nv84BfRL4 @@ -32,7 +33,7 @@ jobs: - name: Get issue ID id: get_issue_id run: | - ISSUE_ID=$(gh project item-list $PROJECT_ID --owner=$OWNER --limit=$ITEM_FETCH_LIMIT --format=json --jq ".items[] | select(.content.number == $ISSUE_NUMBER and .content.repository == $REPOSITORY) | .id") + ISSUE_ID=$(gh project item-list $PROJECT_NUMBER --owner=$OWNER --limit=$ITEM_FETCH_LIMIT --format=json --jq ".items[] | select(.content.number == $ISSUE_NUMBER and .content.repository == $REPOSITORY) | .id") if [ -z "$ISSUE_ID" ]; then echo "Issue ID not found for issue number $ISSUE_NUMBER" exit 1