Skip to content

Commit

Permalink
handle error
Browse files Browse the repository at this point in the history
Signed-off-by: Mauro Stettler <[email protected]>
  • Loading branch information
replay committed Aug 9, 2024
1 parent 2803dc2 commit a4a3b7e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/labeler/labeler.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ func (l *Labeler) Run(issue *github.Issue) error {
return err
}

githubaction.SetOutput("label", label)
err = githubaction.SetOutput("label", label)
if err != nil {
return err
}

level.Info(l.logger).Log("msg", "completed successfully")

Expand Down

0 comments on commit a4a3b7e

Please sign in to comment.