mirror of
https://gitea.com/gitea/tea.git
synced 2026-06-05 18:58:43 +02:00
28ba9b915b
Reviewed-on: https://gitea.com/gitea/tea/pulls/1006 Reviewed-by: Zettat123 <39446+zettat123@noreply.gitea.com>
31 lines
749 B
Go
31 lines
749 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package pulls
|
|
|
|
import (
|
|
stdctx "context"
|
|
|
|
gitea "gitea.dev/sdk"
|
|
"github.com/urfave/cli/v3"
|
|
|
|
"gitea.dev/tea/cmd/flags"
|
|
"gitea.dev/tea/modules/context"
|
|
)
|
|
|
|
// CmdPullsReject requests changes to a PR
|
|
var CmdPullsReject = cli.Command{
|
|
Name: "reject",
|
|
Usage: "Request changes to a pull request",
|
|
Description: "Request changes to a pull request",
|
|
ArgsUsage: "<pull index> <reason>",
|
|
Action: func(requestCtx stdctx.Context, cmd *cli.Command) error {
|
|
ctx, err := context.InitCommand(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return runPullReview(requestCtx, ctx, gitea.ReviewStateRequestChanges, true)
|
|
},
|
|
Flags: flags.AllDefaultFlags,
|
|
}
|