possible fix for duplicating issues
All checks were successful
Gosec Check / Gosec Check (push) Successful in 50s
All checks were successful
Gosec Check / Gosec Check (push) Successful in 50s
This commit is contained in:
parent
f05f53499c
commit
b8c45e319c
1 changed files with 9 additions and 14 deletions
23
cmd/root.go
23
cmd/root.go
|
@ -193,6 +193,7 @@ var rootCmd = &cobra.Command{
|
|||
repoOwner, repoName := actionCtx.Repo()
|
||||
|
||||
issues, _, err := forgeClient.ListIssues(forgejo.ListIssueOption{
|
||||
State: forgejo.StateOpen,
|
||||
ListOptions: forgejo.ListOptions{
|
||||
Page: -1,
|
||||
},
|
||||
|
@ -202,29 +203,23 @@ var rootCmd = &cobra.Command{
|
|||
log.Fatalln(err)
|
||||
}
|
||||
|
||||
//god help me
|
||||
pretty.Logln(issues)
|
||||
|
||||
isFound := false
|
||||
for _, issue := range issues {
|
||||
if issue.Title == "GoSec Report" && actionCtx.Repository == issue.Repository.FullName {
|
||||
isFound = true
|
||||
if issue.Title == "GoSec Report" && repoOwner+"/"+repoName == issue.Repository.FullName {
|
||||
pretty.Println(issue)
|
||||
if _, _, err := forgeClient.EditIssue(repoOwner, repoName, issue.Index, forgejo.EditIssueOption{
|
||||
Body: &markdownOutputStr,
|
||||
}); err != nil {
|
||||
log.Fatalln(err)
|
||||
}
|
||||
break
|
||||
os.Exit(0)
|
||||
}
|
||||
}
|
||||
|
||||
if !isFound {
|
||||
if _, _, err := forgeClient.CreateIssue(repoOwner, repoName, forgejo.CreateIssueOption{
|
||||
Title: "GoSec Report",
|
||||
Body: markdownOutputStr,
|
||||
}); err != nil {
|
||||
log.Fatalln(err)
|
||||
}
|
||||
if _, _, err := forgeClient.CreateIssue(repoOwner, repoName, forgejo.CreateIssueOption{
|
||||
Title: "GoSec Report",
|
||||
Body: markdownOutputStr,
|
||||
}); err != nil {
|
||||
log.Fatalln(err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue