Skip to content

Commit c31244d

Browse files
Bump opencode-anthropic-auth to 0.0.7
1 parent 1330596 commit c31244d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pr-standards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
query($owner: String!, $repo: String!, $number: Int!) {
106106
repository(owner: $owner, name: $repo) {
107107
pullRequest(number: $number) {
108-
issuesReferences(first: 1) {
108+
closingIssuesReferences(first: 1) {
109109
totalCount
110110
}
111111
}
@@ -119,7 +119,7 @@ jobs:
119119
number: pr.number
120120
});
121121
122-
const linkedIssues = result.repository.pullRequest.issuesReferences.totalCount;
122+
const linkedIssues = result.repository.pullRequest.closingIssuesReferences.totalCount;
123123
124124
if (linkedIssues === 0) {
125125
await addLabel('needs:issue');

packages/opencode/src/plugin/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { Flag } from "../flag/flag"
1111
export namespace Plugin {
1212
const log = Log.create({ service: "plugin" })
1313

14-
const BUILTIN = ["[email protected]", "[email protected].5"]
14+
const BUILTIN = ["[email protected]", "[email protected].7"]
1515

1616
const state = Instance.state(async () => {
1717
const client = createOpencodeClient({

0 commit comments

Comments
 (0)