2020-09-30 05:11:33 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2023-09-08 01:40:02 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-09-30 05:11:33 +00:00
|
|
|
|
|
|
|
package pulls
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/tea/cmd/flags"
|
2020-12-15 17:38:22 +00:00
|
|
|
"code.gitea.io/tea/modules/context"
|
2020-12-08 21:41:50 +00:00
|
|
|
"code.gitea.io/tea/modules/interact"
|
|
|
|
"code.gitea.io/tea/modules/task"
|
2020-09-30 05:11:33 +00:00
|
|
|
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CmdPullsCreate creates a pull request
|
|
|
|
var CmdPullsCreate = cli.Command{
|
|
|
|
Name: "create",
|
2020-12-16 16:47:40 +00:00
|
|
|
Aliases: []string{"c"},
|
2020-09-30 05:11:33 +00:00
|
|
|
Usage: "Create a pull-request",
|
2021-12-02 18:33:56 +00:00
|
|
|
Description: "Create a pull-request in the current repo",
|
2020-09-30 05:11:33 +00:00
|
|
|
Action: runPullsCreate,
|
|
|
|
Flags: append([]cli.Flag{
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "head",
|
2021-12-02 18:33:56 +00:00
|
|
|
Usage: "Branch name of the PR source (default is current one). To specify a different head repo, use <user>:<branch>",
|
2020-09-30 05:11:33 +00:00
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "base",
|
|
|
|
Aliases: []string{"b"},
|
2021-12-02 18:33:56 +00:00
|
|
|
Usage: "Branch name of the PR target (default is repos default branch)",
|
2020-09-30 05:11:33 +00:00
|
|
|
},
|
2022-09-27 15:36:36 +00:00
|
|
|
&cli.BoolFlag{
|
|
|
|
Name: "allow-maintainer-edits",
|
|
|
|
Aliases: []string{"edits"},
|
|
|
|
Usage: "Enable maintainers to push to the base branch of created pull",
|
|
|
|
Value: true,
|
|
|
|
},
|
2022-10-25 00:40:00 +00:00
|
|
|
}, flags.IssuePRCreateFlags...),
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-15 17:38:22 +00:00
|
|
|
func runPullsCreate(cmd *cli.Context) error {
|
|
|
|
ctx := context.InitCommand(cmd)
|
2020-09-30 05:11:33 +00:00
|
|
|
|
2020-12-08 21:41:50 +00:00
|
|
|
// no args -> interactive mode
|
|
|
|
if ctx.NumFlags() == 0 {
|
2021-09-22 15:48:21 +00:00
|
|
|
return interact.CreatePull(ctx)
|
2020-12-08 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// else use args to create PR
|
2022-10-25 00:40:00 +00:00
|
|
|
opts, err := flags.GetIssuePRCreateFlags(ctx)
|
2021-03-08 11:48:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-12-08 21:41:50 +00:00
|
|
|
return task.CreatePull(
|
2021-09-22 15:48:21 +00:00
|
|
|
ctx,
|
2020-12-08 21:41:50 +00:00
|
|
|
ctx.String("base"),
|
|
|
|
ctx.String("head"),
|
2022-09-27 15:36:36 +00:00
|
|
|
ctx.Bool("allow-maintainer-edits"),
|
2021-03-08 11:48:03 +00:00
|
|
|
opts,
|
2020-12-08 21:41:50 +00:00
|
|
|
)
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|