From 7c2907cbb448b267643bbcf46ef9ba184d338698 Mon Sep 17 00:00:00 2001 From: Aiden Cline Date: Fri, 9 Jan 2026 11:37:54 -0600 Subject: [PATCH] ci: fix failing pipeline --- .github/workflows/pr-standards.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-standards.yml b/.github/workflows/pr-standards.yml index fb62e660ed..c1cf175678 100644 --- a/.github/workflows/pr-standards.yml +++ b/.github/workflows/pr-standards.yml @@ -105,7 +105,7 @@ jobs: query($owner: String!, $repo: String!, $number: Int!) { repository(owner: $owner, name: $repo) { pullRequest(number: $number) { - issuesReferences(first: 1) { + closingIssuesReferences(first: 1) { totalCount } } @@ -119,7 +119,7 @@ jobs: number: pr.number }); - const linkedIssues = result.repository.pullRequest.issuesReferences.totalCount; + const linkedIssues = result.repository.pullRequest.closingIssuesReferences.totalCount; if (linkedIssues === 0) { await addLabel('needs:issue');