You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/cmd-run.go
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,8 @@ func RunCmd() *cobra.Command {
49
49
cmd.Flags().IntP("concurrent", "C", 1, "The maximum number of concurrent runs.")
50
50
cmd.Flags().BoolP("skip-pr", "", false, "Skip pull request and directly push to the branch.")
51
51
cmd.Flags().BoolP("push-only", "", false, "Skip pull request and only push the feature branch.")
52
+
cmd.Flags().BoolP("api-push", "", false, `Push changes through the API instead of git. Only supported for GitHub.
53
+
It has the benefit of automatically producing verified commits. However, it is slower and not suited for changes to large files.`)
52
54
cmd.Flags().StringSliceP("skip-repo", "s", nil, "Skip changes on specified repositories, the name is including the owner of repository in the format \"ownerName/repoName\".")
53
55
cmd.Flags().BoolP("interactive", "i", false, "Take manual decision before committing any change. Requires git to be installed.")
54
56
cmd.Flags().BoolP("dry-run", "d", false, "Run without pushing changes or creating pull requests.")
0 commit comments