mirror of
https://github.com/openSUSE/osc.git
synced 2025-11-26 14:39:50 +01:00
Add 'git-obs pr close' and 'git-obs pr reopen' commands
This commit is contained in:
49
osc/commands_git/pr_close.py
Normal file
49
osc/commands_git/pr_close.py
Normal file
@@ -0,0 +1,49 @@
|
||||
import osc.commandline_git
|
||||
|
||||
|
||||
class PullRequestCloseCommand(osc.commandline_git.GitObsCommand):
|
||||
"""
|
||||
Close pull requests
|
||||
"""
|
||||
|
||||
name = "close"
|
||||
parent = "PullRequestCommand"
|
||||
|
||||
def init_arguments(self):
|
||||
self.add_argument(
|
||||
"id",
|
||||
nargs="+",
|
||||
help="Pull request ID in <owner>/<repo>#<number> format",
|
||||
)
|
||||
self.add_argument(
|
||||
"-m",
|
||||
"--message",
|
||||
help="Text of the comment",
|
||||
)
|
||||
|
||||
def run(self, args):
|
||||
from osc import gitea_api
|
||||
|
||||
self.print_gitea_settings()
|
||||
|
||||
pull_request_ids = args.id
|
||||
|
||||
for pr_index, pr_id in enumerate(pull_request_ids):
|
||||
print(f"Closing {pr_id} ...")
|
||||
owner, repo, number = gitea_api.PullRequest.split_id(pr_id)
|
||||
|
||||
gitea_api.PullRequest.close(
|
||||
self.gitea_conn,
|
||||
owner,
|
||||
repo,
|
||||
number,
|
||||
)
|
||||
|
||||
if args.message:
|
||||
gitea_api.PullRequest.add_comment(
|
||||
self.gitea_conn,
|
||||
owner,
|
||||
repo,
|
||||
number,
|
||||
msg=args.message,
|
||||
)
|
||||
Reference in New Issue
Block a user