91 lines
2.3 KiB
Go
91 lines
2.3 KiB
Go
package external
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/google/go-github/v61/github"
|
|
"github.com/mudler/local-agent-framework/action"
|
|
"github.com/sashabaranov/go-openai/jsonschema"
|
|
)
|
|
|
|
type GithubIssuesCloser struct {
|
|
token string
|
|
context context.Context
|
|
client *github.Client
|
|
}
|
|
|
|
func NewGithubIssueCloser(ctx context.Context, config map[string]string) *GithubIssuesCloser {
|
|
client := github.NewClient(nil).WithAuthToken(config["token"])
|
|
return &GithubIssuesCloser{
|
|
client: client,
|
|
token: config["token"],
|
|
context: ctx,
|
|
}
|
|
}
|
|
|
|
func (g *GithubIssuesCloser) Run(params action.ActionParams) (string, error) {
|
|
result := struct {
|
|
Repository string `json:"repository"`
|
|
Owner string `json:"owner"`
|
|
IssueNumber int `json:"issue_number"`
|
|
}{}
|
|
err := params.Unmarshal(&result)
|
|
if err != nil {
|
|
fmt.Printf("error: %v", err)
|
|
|
|
return "", err
|
|
}
|
|
|
|
// _, _, err = g.client.Issues.CreateComment(
|
|
// g.context,
|
|
// result.Owner, result.Repository,
|
|
// result.IssueNumber, &github.IssueComment{
|
|
// Body: &result.Text,
|
|
// },
|
|
// )
|
|
// if err != nil {
|
|
// fmt.Printf("error: %v", err)
|
|
|
|
// return "", err
|
|
// }
|
|
|
|
_, _, err = g.client.Issues.Edit(g.context, result.Owner, result.Repository, result.IssueNumber, &github.IssueRequest{
|
|
State: github.String("closed"),
|
|
})
|
|
|
|
if err != nil {
|
|
fmt.Printf("error: %v", err)
|
|
|
|
return "", err
|
|
}
|
|
|
|
resultString := fmt.Sprintf("Closed issue %d in repository %s/%s", result.IssueNumber, result.Owner, result.Repository)
|
|
if err != nil {
|
|
resultString = fmt.Sprintf("Error closing issue %d in repository %s/%s: %v", result.IssueNumber, result.Owner, result.Repository, err)
|
|
}
|
|
return resultString, err
|
|
}
|
|
|
|
func (g *GithubIssuesCloser) Definition() action.ActionDefinition {
|
|
return action.ActionDefinition{
|
|
Name: "close_github_issue",
|
|
Description: "Closes a Github issue.",
|
|
Properties: map[string]jsonschema.Definition{
|
|
"repository": {
|
|
Type: jsonschema.String,
|
|
Description: "The repository to add the label to.",
|
|
},
|
|
"owner": {
|
|
Type: jsonschema.String,
|
|
Description: "The owner of the repository.",
|
|
},
|
|
"issue_number": {
|
|
Type: jsonschema.Number,
|
|
Description: "The issue number to close",
|
|
},
|
|
},
|
|
Required: []string{"issue_number", "repository", "owner"},
|
|
}
|
|
}
|