only do forgejo stuff when in action
All checks were successful
Gosec Check / Gosec Check (push) Successful in 53s

This commit is contained in:
Shane C 2024-09-08 15:10:45 -04:00
parent dd7f28e061
commit fe02c430ad
Signed by: shanec
GPG key ID: E46B5FEA35B22FF9

View file

@ -178,7 +178,6 @@ var rootCmd = &cobra.Command{
if isAction {
action.AddStepSummary(markdownOutputStr)
}
actionCtx, err := action.Context()
if err != nil {
@ -199,14 +198,6 @@ var rootCmd = &cobra.Command{
log.Fatalln(err)
}
// This will trigger gosec
file, err := os.OpenFile("testing.txt", os.O_APPEND|os.O_CREATE|os.O_WRONLY, os.ModePerm)
if err != nil {
log.Fatalln(err)
}
defer file.Close()
if len(issues) == 0 {
if _, _, err := forgeClient.CreateIssue(repoOwner, repoName, forgejo.CreateIssueOption{
Title: "GoSec Report",
@ -225,6 +216,7 @@ var rootCmd = &cobra.Command{
}
}
}
}
},
}