mirror of
https://gitea.com/gitea/tea.git
synced 2026-06-05 18:58:43 +02:00
8e0666ab85
Reviewed-on: https://gitea.com/gitea/tea/pulls/1003 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.com> Co-committed-by: techknowlogick <techknowlogick@gitea.com>
32 lines
737 B
Go
32 lines
737 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package pulls
|
|
|
|
import (
|
|
stdctx "context"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/urfave/cli/v3"
|
|
|
|
"gitea.dev/tea/cmd/flags"
|
|
"gitea.dev/tea/modules/context"
|
|
)
|
|
|
|
// CmdPullsApprove approves a PR
|
|
var CmdPullsApprove = cli.Command{
|
|
Name: "approve",
|
|
Aliases: []string{"lgtm", "a"},
|
|
Usage: "Approve a pull request",
|
|
Description: "Approve a pull request",
|
|
ArgsUsage: "<pull index> [<comment>]",
|
|
Action: func(_ stdctx.Context, cmd *cli.Command) error {
|
|
ctx, err := context.InitCommand(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return runPullReview(ctx, gitea.ReviewStateApproved, false)
|
|
},
|
|
Flags: flags.AllDefaultFlags,
|
|
}
|