X Tutup
Skip to content

Commit cb03a3a

Browse files
committed
linter appeasement
1 parent 185f624 commit cb03a3a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

pkg/cmd/actions/actions.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func actionsExplainer(cs *iostreams.ColorScheme, color bool) string {
4444
workflowHeader = cs.Bold(workflowHeader)
4545
}
4646

47-
return fmt.Sprintf(heredoc.Docf(`
47+
return heredoc.Docf(`
4848
%s
4949
5050
gh integrates with Actions to help you manage runs and workflows.
@@ -67,11 +67,10 @@ func actionsExplainer(cs *iostreams.ColorScheme, color bool) string {
6767
6868
For more in depth help including examples, see online documentation at:
6969
https://docs.github.com/en/actions/guides/managing-github-actions-with-github-cli
70-
`,
71-
header, runHeader, workflowHeader))
70+
`, header, runHeader, workflowHeader)
7271
}
7372

7473
func actionsRun(opts ActionsOptions) {
7574
cs := opts.IO.ColorScheme()
76-
fmt.Fprintf(opts.IO.Out, actionsExplainer(cs, true))
75+
fmt.Fprintln(opts.IO.Out, actionsExplainer(cs, true))
7776
}

0 commit comments

Comments
 (0)
X Tutup