Skip to content

Commit

Permalink
fix: fixed skip-pr flag description (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
lindell authored Jun 5, 2021
1 parent b7f1183 commit 1c4e2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func RunCmd() *cobra.Command {
cmd.Flags().IntP("max-reviewers", "M", 0, "If this value is set, reviewers will be randomized")
cmd.Flags().IntP("concurrent", "C", 1, "The maximum number of concurrent runs")
cmd.Flags().IntP("fetch-depth", "f", 1, "Limit fetching to the specified number of commits. Set to 0 for no limit")
cmd.Flags().BoolP("skip-pr", "", false, "Limit fetching to the specified number of commits. Set to 0 for no limit")
cmd.Flags().BoolP("skip-pr", "", false, "Skip pull request and directly push to the branch")
cmd.Flags().BoolP("dry-run", "d", false, "Run without pushing changes or creating pull requests")
cmd.Flags().StringP("author-name", "", "", "Name of the committer. If not set, the global git config setting will be used.")
cmd.Flags().StringP("author-email", "", "", "Email of the committer. If not set, the global git config setting will be used.")
Expand Down

0 comments on commit 1c4e2ac

Please sign in to comment.