summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2026-01-09 00:40:44 -0600
committerAiden Cline <[email protected]>2026-01-09 00:54:42 -0600
commit13305966e5ce259a2379fa88d0d124c159ad9d40 (patch)
treee5d44b00991793bafd9b98b8c87fab27f6d68538 /.github
parenta618fbe8cf6a8f4a8a992b8b4c6e7deca88d0428 (diff)
downloadopencode-13305966e5ce259a2379fa88d0d124c159ad9d40.tar.gz
opencode-13305966e5ce259a2379fa88d0d124c159ad9d40.zip
ci: tweak pr standards workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pr-standards.yml4
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');