File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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
7473func 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}
You can’t perform that action at this time.
0 commit comments