diff options
| author | Aiden Cline <[email protected]> | 2026-01-09 00:40:44 -0600 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2026-01-09 00:54:42 -0600 |
| commit | 13305966e5ce259a2379fa88d0d124c159ad9d40 (patch) | |
| tree | e5d44b00991793bafd9b98b8c87fab27f6d68538 /.github | |
| parent | a618fbe8cf6a8f4a8a992b8b4c6e7deca88d0428 (diff) | |
| download | opencode-13305966e5ce259a2379fa88d0d124c159ad9d40.tar.gz opencode-13305966e5ce259a2379fa88d0d124c159ad9d40.zip | |
ci: tweak pr standards workflow
Diffstat (limited to '.github')
| -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 c1cf17567..fb62e660e 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) { - closingIssuesReferences(first: 1) { + issuesReferences(first: 1) { totalCount } } @@ -119,7 +119,7 @@ jobs: number: pr.number }); - const linkedIssues = result.repository.pullRequest.closingIssuesReferences.totalCount; + const linkedIssues = result.repository.pullRequest.issuesReferences.totalCount; if (linkedIssues === 0) { await addLabel('needs:issue'); |
