Compare commits
2 Commits
a1d1f01606
...
e04c624aa1
Author | SHA1 | Date | |
---|---|---|---|
e04c624aa1 | |||
f003169a1b |
|
@ -157,6 +157,7 @@ class RepositoryConfig:
|
||||||
repo: str
|
repo: str
|
||||||
base_branch: str
|
base_branch: str
|
||||||
assignee: str | None = None
|
assignee: str | None = None
|
||||||
|
reviewer: str | None = None
|
||||||
|
|
||||||
def repo_url(self) -> str:
|
def repo_url(self) -> str:
|
||||||
return f'{self.gitea_url}:{self.owner}/{self.repo}.git'.replace(
|
return f'{self.gitea_url}:{self.owner}/{self.repo}.git'.replace(
|
||||||
|
@ -498,10 +499,12 @@ def push_changes(
|
||||||
cmd = ['git', 'push', 'origin', branch_name, '--force']
|
cmd = ['git', 'push', 'origin', branch_name, '--force']
|
||||||
run_cmd(cmd, cwd)
|
run_cmd(cmd, cwd)
|
||||||
|
|
||||||
# Then create the PR with the aider label and optional assignee/reviewer
|
# Prepare assignees list
|
||||||
assignees = [repository_config.assignee] if repository_config.assignee else None
|
assignees = []
|
||||||
reviewers = [repository_config.assignee] if repository_config.assignee else None
|
if repository_config.assignee:
|
||||||
|
assignees.append(repository_config.assignee)
|
||||||
|
|
||||||
|
# Then create the PR with the aider label and assignees
|
||||||
pr_response = gitea_client.create_pull_request(
|
pr_response = gitea_client.create_pull_request(
|
||||||
owner=repository_config.owner,
|
owner=repository_config.owner,
|
||||||
repo=repository_config.repo,
|
repo=repository_config.repo,
|
||||||
|
@ -510,15 +513,39 @@ def push_changes(
|
||||||
head=branch_name,
|
head=branch_name,
|
||||||
base=repository_config.base_branch,
|
base=repository_config.base_branch,
|
||||||
labels=['aider'],
|
labels=['aider'],
|
||||||
assignees=assignees,
|
assignees=assignees if assignees else None,
|
||||||
reviewers=reviewers,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Extract PR number
|
||||||
|
pr_number = int(pr_response.get('number'))
|
||||||
|
|
||||||
|
# Assign reviewer if specified (must be done after PR creation)
|
||||||
|
if repository_config.reviewer:
|
||||||
|
try:
|
||||||
|
gitea_client.assign_reviewers(
|
||||||
|
owner=repository_config.owner,
|
||||||
|
repo=repository_config.repo,
|
||||||
|
pull_number=pr_number,
|
||||||
|
reviewers=[repository_config.reviewer],
|
||||||
|
)
|
||||||
|
logger.info(
|
||||||
|
'Assigned reviewer %s to PR #%s',
|
||||||
|
repository_config.reviewer,
|
||||||
|
pr_number,
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
logger.warning(
|
||||||
|
'Failed to assign reviewer %s to PR #%s',
|
||||||
|
repository_config.reviewer,
|
||||||
|
pr_number,
|
||||||
|
exc_info=True,
|
||||||
|
)
|
||||||
|
|
||||||
# Extract PR number and URL if available
|
# Extract PR number and URL if available
|
||||||
return IssueResolution(
|
return IssueResolution(
|
||||||
True,
|
True,
|
||||||
pr_response.get('html_url'),
|
pr_response.get('html_url'),
|
||||||
int(pr_response.get('number')),
|
pr_number,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,12 @@ def parse_args():
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--assignee',
|
'--assignee',
|
||||||
help='Username to automatically assign as assignee and reviewer for created pull requests',
|
help='Username to assign as the assignee for created pull requests',
|
||||||
|
default=None,
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'--reviewer',
|
||||||
|
help='Username to assign as the reviewer for created pull requests',
|
||||||
default=None,
|
default=None,
|
||||||
)
|
)
|
||||||
return parser.parse_args()
|
return parser.parse_args()
|
||||||
|
@ -90,6 +95,7 @@ def main():
|
||||||
repo=repo,
|
repo=repo,
|
||||||
base_branch=args.base_branch,
|
base_branch=args.base_branch,
|
||||||
assignee=args.assignee,
|
assignee=args.assignee,
|
||||||
|
reviewer=args.reviewer,
|
||||||
)
|
)
|
||||||
solve_issues_in_repository(repository_config, client, seen_issues_db)
|
solve_issues_in_repository(repository_config, client, seen_issues_db)
|
||||||
del repo
|
del repo
|
||||||
|
|
|
@ -140,9 +140,8 @@ class GiteaClient:
|
||||||
base: str,
|
base: str,
|
||||||
labels: list[str] = None,
|
labels: list[str] = None,
|
||||||
assignees: list[str] = None,
|
assignees: list[str] = None,
|
||||||
reviewers: list[str] = None,
|
|
||||||
) -> dict:
|
) -> dict:
|
||||||
"""Create a pull request and optionally apply labels, assignees, and reviewers.
|
"""Create a pull request and optionally apply labels and assignees.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
owner (str): Owner of the repository.
|
owner (str): Owner of the repository.
|
||||||
|
@ -153,7 +152,6 @@ class GiteaClient:
|
||||||
base (str): The name of the branch you want the changes pulled into.
|
base (str): The name of the branch you want the changes pulled into.
|
||||||
labels (list[str], optional): List of label names to apply to the pull request.
|
labels (list[str], optional): List of label names to apply to the pull request.
|
||||||
assignees (list[str], optional): List of usernames to assign to the pull request.
|
assignees (list[str], optional): List of usernames to assign to the pull request.
|
||||||
reviewers (list[str], optional): List of usernames to request reviews from.
|
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
dict: The created pull request data.
|
dict: The created pull request data.
|
||||||
|
@ -169,11 +167,8 @@ class GiteaClient:
|
||||||
'base': base,
|
'base': base,
|
||||||
}
|
}
|
||||||
|
|
||||||
# Add assignees and reviewers if provided
|
|
||||||
if assignees:
|
if assignees:
|
||||||
json_data['assignees'] = assignees
|
json_data['assignees'] = assignees
|
||||||
if reviewers:
|
|
||||||
json_data['reviewers'] = reviewers
|
|
||||||
|
|
||||||
response = self.session.post(url, json=json_data)
|
response = self.session.post(url, json=json_data)
|
||||||
# If a pull request for this head/base already exists, return it instead of crashing
|
# If a pull request for this head/base already exists, return it instead of crashing
|
||||||
|
@ -189,100 +184,39 @@ class GiteaClient:
|
||||||
pr.get('head', {}).get('ref') == head
|
pr.get('head', {}).get('ref') == head
|
||||||
and pr.get('base', {}).get('ref') == base
|
and pr.get('base', {}).get('ref') == base
|
||||||
):
|
):
|
||||||
# Try to set assignees and reviewers on existing PR
|
|
||||||
pr_number = pr.get('number')
|
|
||||||
if assignees and pr_number:
|
|
||||||
self.set_pull_request_assignees(
|
|
||||||
owner,
|
|
||||||
repo,
|
|
||||||
pr_number,
|
|
||||||
assignees,
|
|
||||||
)
|
|
||||||
if reviewers and pr_number:
|
|
||||||
self.set_pull_request_reviewers(
|
|
||||||
owner,
|
|
||||||
repo,
|
|
||||||
pr_number,
|
|
||||||
reviewers,
|
|
||||||
)
|
|
||||||
return pr
|
return pr
|
||||||
# fallback to raise if we can’t find it
|
# fallback to raise if we can’t find it
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
|
return response.json()
|
||||||
|
|
||||||
pr_data = response.json()
|
def assign_reviewers(
|
||||||
|
|
||||||
# If initial creation didn't set assignees/reviewers, try setting them separately
|
|
||||||
pr_number = pr_data.get('number')
|
|
||||||
if pr_number:
|
|
||||||
if assignees:
|
|
||||||
self.set_pull_request_assignees(owner, repo, pr_number, assignees)
|
|
||||||
if reviewers:
|
|
||||||
self.set_pull_request_reviewers(owner, repo, pr_number, reviewers)
|
|
||||||
|
|
||||||
return pr_data
|
|
||||||
|
|
||||||
def set_pull_request_assignees(
|
|
||||||
self,
|
self,
|
||||||
owner: str,
|
owner: str,
|
||||||
repo: str,
|
repo: str,
|
||||||
pr_number: int,
|
pull_number: int,
|
||||||
assignees: list[str],
|
|
||||||
) -> bool:
|
|
||||||
"""Set assignees for a pull request.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
owner (str): Owner of the repository.
|
|
||||||
repo (str): Name of the repository.
|
|
||||||
pr_number (int): Pull request number.
|
|
||||||
assignees (list[str]): List of usernames to assign.
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
bool: True if successful, False otherwise.
|
|
||||||
"""
|
|
||||||
url = f'{self.gitea_url}/repos/{owner}/{repo}/pulls/{pr_number}/assignees'
|
|
||||||
json_data = {'assignees': assignees}
|
|
||||||
try:
|
|
||||||
response = self.session.put(url, json=json_data)
|
|
||||||
response.raise_for_status()
|
|
||||||
logger.info('Assigned users %s to PR #%s', assignees, pr_number)
|
|
||||||
return True
|
|
||||||
except Exception:
|
|
||||||
logger.warning('Failed to assign users %s to PR #%s', assignees, pr_number)
|
|
||||||
return False
|
|
||||||
|
|
||||||
def set_pull_request_reviewers(
|
|
||||||
self,
|
|
||||||
owner: str,
|
|
||||||
repo: str,
|
|
||||||
pr_number: int,
|
|
||||||
reviewers: list[str],
|
reviewers: list[str],
|
||||||
) -> bool:
|
) -> dict:
|
||||||
"""Set reviewers for a pull request.
|
"""Assign reviewers to an existing pull request.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
owner (str): Owner of the repository.
|
owner (str): Owner of the repository.
|
||||||
repo (str): Name of the repository.
|
repo (str): Name of the repository.
|
||||||
pr_number (int): Pull request number.
|
pull_number (int): Number of the pull request.
|
||||||
reviewers (list[str]): List of usernames to request reviews from.
|
reviewers (list[str]): List of usernames to assign as reviewers.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
bool: True if successful, False otherwise.
|
dict: The response data from the API.
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
requests.HTTPError: If the API request fails.
|
||||||
"""
|
"""
|
||||||
url = f'{self.gitea_url}/repos/{owner}/{repo}/pulls/{pr_number}/reviewers'
|
url = f'{self.gitea_url}/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers'
|
||||||
json_data = {'reviewers': reviewers}
|
json_data = {'reviewers': reviewers}
|
||||||
try:
|
|
||||||
response = self.session.post(url, json=json_data)
|
response = self.session.post(url, json=json_data)
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
logger.info('Requested reviews from %s for PR #%s', reviewers, pr_number)
|
return response.json()
|
||||||
return True
|
|
||||||
except Exception:
|
|
||||||
logger.warning(
|
|
||||||
'Failed to request reviews from %s for PR #%s',
|
|
||||||
reviewers,
|
|
||||||
pr_number,
|
|
||||||
)
|
|
||||||
return False
|
|
||||||
|
|
||||||
def get_failed_pipelines(self, owner: str, repo: str, pr_number: str) -> list[int]:
|
def get_failed_pipelines(self, owner: str, repo: str, pr_number: str) -> list[int]:
|
||||||
"""Fetch pipeline runs for a PR and return IDs of failed runs."""
|
"""Fetch pipeline runs for a PR and return IDs of failed runs."""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user