feat(github-actions): allow to bind to a specific repository

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
Ettore Di Giacinto
2025-03-12 21:59:31 +01:00
parent 0ad2de72e0
commit c69ee9e5f7
4 changed files with 115 additions and 23 deletions

View File

@@ -11,18 +11,20 @@ import (
)
type GithubIssueSearch struct {
token string
context context.Context
client *github.Client
token, repository, owner string
context context.Context
client *github.Client
}
func NewGithubIssueSearch(ctx context.Context, config map[string]string) *GithubIssueSearch {
client := github.NewClient(nil).WithAuthToken(config["token"])
return &GithubIssueSearch{
client: client,
token: config["token"],
context: ctx,
client: client,
token: config["token"],
repository: config["repository"],
owner: config["owner"],
context: ctx,
}
}
@@ -39,6 +41,11 @@ func (g *GithubIssueSearch) Run(ctx context.Context, params action.ActionParams)
return action.ActionResult{}, err
}
if g.repository != "" && g.owner != "" {
result.Repository = g.repository
result.Owner = g.owner
}
query := fmt.Sprintf("%s in:%s user:%s", result.Query, result.Repository, result.Owner)
resultString := ""
issues, _, err := g.client.Search.Issues(g.context, query, &github.SearchOptions{
@@ -61,6 +68,19 @@ func (g *GithubIssueSearch) Run(ctx context.Context, params action.ActionParams)
}
func (g *GithubIssueSearch) Definition() action.ActionDefinition {
if g.repository != "" && g.owner != "" {
return action.ActionDefinition{
Name: "search_github_issue",
Description: "Search between github issues",
Properties: map[string]jsonschema.Definition{
"query": {
Type: jsonschema.String,
Description: "The text to search for",
},
},
Required: []string{"query"},
}
}
return action.ActionDefinition{
Name: "search_github_issue",
Description: "Search between github issues",
@@ -78,6 +98,6 @@ func (g *GithubIssueSearch) Definition() action.ActionDefinition {
Description: "The owner of the repository",
},
},
Required: []string{"text", "repository", "owner"},
Required: []string{"query", "repository", "owner"},
}
}