diff options
| author | Aiden Cline <[email protected]> | 2026-01-09 11:37:54 -0600 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2026-01-09 11:38:01 -0600 |
| commit | 7c2907cbb448b267643bbcf46ef9ba184d338698 (patch) | |
| tree | 2585aad44d3704a2fe4c66ba6e72ce23ded5f6ec /.github/workflows | |
| parent | bce9dc040f66dda76986abf5a20f2ff4de1ca6d9 (diff) | |
| download | opencode-7c2907cbb448b267643bbcf46ef9ba184d338698.tar.gz opencode-7c2907cbb448b267643bbcf46ef9ba184d338698.zip | |
ci: fix failing pipeline
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pr-standards.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/pr-standards.yml b/.github/workflows/pr-standards.yml index fb62e660e..c1cf17567 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'); |
