summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2026-01-09 11:37:54 -0600
committerAiden Cline <[email protected]>2026-01-09 11:38:01 -0600
commit7c2907cbb448b267643bbcf46ef9ba184d338698 (patch)
tree2585aad44d3704a2fe4c66ba6e72ce23ded5f6ec /.github/workflows
parentbce9dc040f66dda76986abf5a20f2ff4de1ca6d9 (diff)
downloadopencode-7c2907cbb448b267643bbcf46ef9ba184d338698.tar.gz
opencode-7c2907cbb448b267643bbcf46ef9ba184d338698.zip
ci: fix failing pipeline
Diffstat (limited to '.github/workflows')
-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 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');