This commit is contained in:
parent
72dac5190d
commit
276217ad2d
1 changed files with 2 additions and 7 deletions
|
@ -14,7 +14,6 @@ import (
|
|||
"github.com/sethvargo/go-githubactions"
|
||||
"log"
|
||||
"os"
|
||||
"runtime"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
|
@ -184,9 +183,8 @@ var rootCmd = &cobra.Command{
|
|||
repoOwner, repoName := actionCtx.Repo()
|
||||
|
||||
issues, _, err := forgeClient.ListIssues(forgejo.ListIssueOption{
|
||||
CreatedBy: "forgejo-actions",
|
||||
KeyWord: "GoSec Report",
|
||||
Type: forgejo.IssueTypeIssue,
|
||||
KeyWord: "GoSec Report",
|
||||
Type: forgejo.IssueTypeIssue,
|
||||
})
|
||||
if err != nil {
|
||||
log.Fatalln(err)
|
||||
|
@ -199,9 +197,6 @@ var rootCmd = &cobra.Command{
|
|||
|
||||
defer file.Close()
|
||||
|
||||
hello := uint8(runtime.NumCPU())
|
||||
fmt.Println(hello)
|
||||
|
||||
if len(issues) == 0 {
|
||||
if _, _, err := forgeClient.CreateIssue(repoOwner, repoName, forgejo.CreateIssueOption{
|
||||
Title: "GoSec Report",
|
||||
|
|
Loading…
Reference in a new issue