diff --git a/app/jira.go b/app/jira.go index f8c3aa2..6ac2769 100644 --- a/app/jira.go +++ b/app/jira.go @@ -153,6 +153,9 @@ func (a *App) PublishNextInJira(dryRun bool) (bool, error) { if err := a.Save(); err != nil { return false, err } + + // ToDo: print here the newly created issue + return true, nil } diff --git a/cmd/report.go b/cmd/report.go index 968a85b..c80a40c 100644 --- a/cmd/report.go +++ b/cmd/report.go @@ -22,7 +22,7 @@ func ReportCmd() *cobra.Command { } cmd.AddCommand( - UserReportCmd(), + UsersReportCmd(), ) return cmd