1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-11-24 22:02:10 +01:00
Files
github.com_openSUSE_osc/osc/commands_git/pr_review_decline.py

56 lines
1.7 KiB
Python

import osc.commandline_git
class PullRequestReviewDeclineCommand(osc.commandline_git.GitObsCommand):
"""
Decline pull request reviews (request changes)
"""
name = "decline"
parent = "PullRequestReviewCommand"
def init_arguments(self):
self.add_argument(
"id",
nargs="+",
help="Pull request ID in <owner>/<repo>#<number> format",
)
self.add_argument(
"-m",
"--message",
required=True,
help="Justification of the review state change",
)
self.add_argument(
"--commit",
help="Pin the review to the specified commit",
)
self.add_argument(
"--reviewer",
help="Review on behalf of the specified reviewer that is associated to group review bot",
)
def run(self, args):
from osc import gitea_api
if len(args.id) > 1 and args.commit:
self.parser.error("The --commit option can be used only with one pull request")
self.print_gitea_settings()
if args.reviewer:
try:
gitea_api.User.get(self.gitea_conn, args.reviewer)
except gitea_api.UserDoesNotExist as e:
self.parser.error(f"Invalid reviewer: {e}")
pull_request_ids = args.id
for pr_index, pr_id in enumerate(pull_request_ids):
self.print_gitea_settings()
print(f"Declining {pr_id} ...")
owner, repo, number = gitea_api.PullRequest.split_id(pr_id)
gitea_api.PullRequest.decline_review(self.gitea_conn, owner, repo, number, msg=args.message, commit=args.commit, reviewer=args.reviewer)