We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22c1925 commit c9c3b98Copy full SHA for c9c3b98
pkg/config/output.go
@@ -17,7 +17,7 @@ const (
17
OutFormatCodeClimate = "code-climate"
18
OutFormatHTML = "html"
19
OutFormatJunitXML = "junit-xml"
20
- OutFormatGithubActions = "github-actions"
+ OutFormatGithubActions = "github-actions" // Deprecated
21
OutFormatTeamCity = "teamcity"
22
)
23
pkg/printers/githubaction.go
@@ -15,6 +15,7 @@ type GitHubAction struct {
15
}
16
// NewGitHubAction output format outputs issues according to GitHub actions.
+// Deprecated
func NewGitHubAction(w io.Writer) *GitHubAction {
return &GitHubAction{w: w}
0 commit comments