mirror of
https://gitea.com/gitea/tea
synced 2024-11-16 12:13:15 +00:00
4487213581
commands now accept multiple arguments where it makes sense. #### before ``` NAME: tea issues close - Change state of an issue to 'closed' USAGE: tea issues close [command options] <issue index> ``` #### after ``` NAME: tea issues close - Change state of one ore more issues to 'closed' USAGE: tea issues close [command options] <issue index> [<issue index>...] ``` Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/512 Reviewed-by: 6543 <6543@obermui.de> Reviewed-by: justusbunsi <justusbunsi@noreply.gitea.io> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
26 lines
746 B
Go
26 lines
746 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package pulls
|
|
|
|
import (
|
|
"code.gitea.io/tea/cmd/flags"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// CmdPullsClose closes a given open pull request
|
|
var CmdPullsClose = cli.Command{
|
|
Name: "close",
|
|
Usage: "Change state of one or more pull requests to 'closed'",
|
|
Description: `Change state of one or more pull requests to 'closed'`,
|
|
ArgsUsage: "<pull index> [<pull index>...]",
|
|
Action: func(ctx *cli.Context) error {
|
|
var s = gitea.StateClosed
|
|
return editPullState(ctx, gitea.EditPullRequestOption{State: &s})
|
|
},
|
|
Flags: flags.AllDefaultFlags,
|
|
}
|