Compare commits
1 Commits
28d7622956
...
renovate/c
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b5d5ae16f |
@@ -1,14 +0,0 @@
|
|||||||
import { tool } from "@opencode-ai/plugin"
|
|
||||||
import { $ } from "bun"
|
|
||||||
|
|
||||||
export default tool({
|
|
||||||
description: "Add a comment to a specific issue using tea CLI",
|
|
||||||
args: {
|
|
||||||
issueNumber: tool.schema.number().describe("Issue number/index"),
|
|
||||||
body: tool.schema.string().describe("Comment body"),
|
|
||||||
},
|
|
||||||
async execute(args) {
|
|
||||||
const result = await $`tea comment ${args.issueNumber} ${args.body}`.text()
|
|
||||||
return result.trim()
|
|
||||||
},
|
|
||||||
})
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
import { tool } from "@opencode-ai/plugin"
|
|
||||||
import { $ } from "bun"
|
|
||||||
|
|
||||||
export default tool({
|
|
||||||
description: "Get a specific issue with all details and comments using tea CLI",
|
|
||||||
args: {
|
|
||||||
issueNumber: tool.schema.number().describe("Issue number/index"),
|
|
||||||
},
|
|
||||||
async execute(args) {
|
|
||||||
const result = await $`tea issues ${args.issueNumber} --comments --output json`.text()
|
|
||||||
return result.trim()
|
|
||||||
},
|
|
||||||
})
|
|
||||||
6
renovate.json
Normal file
6
renovate.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"config:recommended"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user