mirror of
https://gitea.com/gitea/tea.git
synced 2026-04-06 00:13:30 +02:00
* Use stdlib encoders * Reduce some duplication * Remove global pagination state * Dedupe JSON detail types * Bump golangci-lint Reviewed-on: https://gitea.com/gitea/tea/pulls/941 Co-authored-by: techknowlogick <techknowlogick@gitea.com> Co-committed-by: techknowlogick <techknowlogick@gitea.com>
31 lines
744 B
Go
31 lines
744 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package pulls
|
|
|
|
import (
|
|
stdctx "context"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"code.gitea.io/tea/cmd/flags"
|
|
"code.gitea.io/tea/modules/context"
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
// 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,
|
|
}
|