Get all relevant PRs
This commit is contained in:
parent
2d3499dfd9
commit
cd04686ae5
4 changed files with 62 additions and 62 deletions
|
@ -5,7 +5,7 @@ from github import Issue
|
||||||
from actioner.clients import get_todoist_client, github
|
from actioner.clients import get_todoist_client, github
|
||||||
from actioner.utils import get_todoist_project_from_repo
|
from actioner.utils import get_todoist_project_from_repo
|
||||||
from actioner.utils.github import get_existing_task, get_issue_link, get_relevant_issues
|
from actioner.utils.github import get_existing_task, get_issue_link, get_relevant_issues
|
||||||
from actioner.utils.todoist import is_task_completed
|
from actioner.utils.todoist import get_existing_tasks, is_task_completed
|
||||||
|
|
||||||
LABEL_TO_STATUS = {"must have": 4, "critical": 4, "should have": 2}
|
LABEL_TO_STATUS = {"must have": 4, "critical": 4, "should have": 2}
|
||||||
|
|
||||||
|
@ -21,14 +21,6 @@ def issue_to_task_name(issue: Issue) -> str:
|
||||||
return get_issue_link(issue) + ": " + issue.title
|
return get_issue_link(issue) + ": " + issue.title
|
||||||
|
|
||||||
|
|
||||||
def get_existing_tasks(project_id, todoist):
|
|
||||||
return {
|
|
||||||
item["id"]: item["content"]
|
|
||||||
for item in todoist.state["items"]
|
|
||||||
if item["project_id"] == project_id
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
def todoist_assigned_issues():
|
def todoist_assigned_issues():
|
||||||
todoist = get_todoist_client()
|
todoist = get_todoist_client()
|
||||||
me = github.get_user()
|
me = github.get_user()
|
||||||
|
|
|
@ -4,15 +4,12 @@ from github import PullRequest
|
||||||
|
|
||||||
from actioner.clients import get_todoist_client, github
|
from actioner.clients import get_todoist_client, github
|
||||||
from actioner.utils import get_todoist_project_from_repo
|
from actioner.utils import get_todoist_project_from_repo
|
||||||
from actioner.utils.github import get_existing_task, get_issue_link
|
from actioner.utils.github import get_existing_task, get_issue_link, get_relevant_prs
|
||||||
from actioner.utils.todoist import is_task_completed
|
from actioner.utils.todoist import get_existing_tasks, is_task_completed
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
REPOS = ["srobo/competition-team-minutes"]
|
|
||||||
|
|
||||||
|
|
||||||
def pr_to_task_name(pr: PullRequest) -> str:
|
def pr_to_task_name(pr: PullRequest) -> str:
|
||||||
return "Review " + get_issue_link(pr) + ": " + pr.title
|
return "Review " + get_issue_link(pr) + ": " + pr.title
|
||||||
|
|
||||||
|
@ -28,17 +25,11 @@ def todoist_repo_prs():
|
||||||
me = github.get_user()
|
me = github.get_user()
|
||||||
todoist.projects.sync()
|
todoist.projects.sync()
|
||||||
todoist.items.sync()
|
todoist.items.sync()
|
||||||
for repo_name in REPOS:
|
for pr in get_relevant_prs():
|
||||||
project_id = get_todoist_project_from_repo(repo_name)
|
project_id = get_todoist_project_from_repo(pr.base.repo.full_name)
|
||||||
if not project_id:
|
if not project_id:
|
||||||
continue
|
continue
|
||||||
existing_tasks = {
|
existing_tasks = get_existing_tasks(project_id, todoist)
|
||||||
item["id"]: item["content"]
|
|
||||||
for item in todoist.state["items"]
|
|
||||||
if item["project_id"] == project_id
|
|
||||||
}
|
|
||||||
repo = github.get_repo(repo_name)
|
|
||||||
for pr in repo.get_pulls(state="all"):
|
|
||||||
existing_task_id = get_existing_task(existing_tasks, pr)
|
existing_task_id = get_existing_task(existing_tasks, pr)
|
||||||
|
|
||||||
if pr.state == "closed" and existing_task_id:
|
if pr.state == "closed" and existing_task_id:
|
||||||
|
@ -66,15 +57,13 @@ def todoist_repo_prs():
|
||||||
)
|
)
|
||||||
todoist.items.complete([existing_task_id])
|
todoist.items.complete([existing_task_id])
|
||||||
elif task_completed:
|
elif task_completed:
|
||||||
logger.info(
|
logger.info("Re-opening task to review '{}'".format(pr.title))
|
||||||
"Re-opening task to review '{}'".format(pr.title)
|
|
||||||
)
|
|
||||||
todoist.items.uncomplete([existing_task_id])
|
todoist.items.uncomplete([existing_task_id])
|
||||||
continue
|
continue
|
||||||
elif my_review and my_review.commit_id != pr.head.sha:
|
elif my_review and my_review.commit_id != pr.head.sha:
|
||||||
logger.info("Creating task to review '{}'".format(pr.title))
|
logger.info("Creating task to review '{}'".format(pr.title))
|
||||||
existing_task_id = todoist.items.add(
|
existing_task_id = todoist.items.add(
|
||||||
pr_to_task_name(pr), project_id
|
pr_to_task_name(pr), project_id=project_id
|
||||||
)["id"]
|
)["id"]
|
||||||
if existing_task_id is not None:
|
if existing_task_id is not None:
|
||||||
existing_task = todoist.items.get_by_id(existing_task_id)
|
existing_task = todoist.items.get_by_id(existing_task_id)
|
||||||
|
|
|
@ -26,3 +26,14 @@ def get_relevant_issues():
|
||||||
for issue in repo.get_issues(since=since, state="all"):
|
for issue in repo.get_issues(since=since, state="all"):
|
||||||
if issue.pull_request is None:
|
if issue.pull_request is None:
|
||||||
yield issue
|
yield issue
|
||||||
|
|
||||||
|
|
||||||
|
def get_relevant_prs():
|
||||||
|
since = datetime.datetime.now() - relativedelta(weeks=1)
|
||||||
|
for repo in github.get_user().get_repos():
|
||||||
|
if repo.updated_at < since:
|
||||||
|
continue
|
||||||
|
for pull in repo.get_pulls(state="all", sort="updated", direction="desc"):
|
||||||
|
if pull.updated_at < since:
|
||||||
|
break
|
||||||
|
yield pull
|
||||||
|
|
|
@ -9,3 +9,11 @@ def is_task_completed(task: Item):
|
||||||
return task["checked"]
|
return task["checked"]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def get_existing_tasks(project_id, todoist):
|
||||||
|
return {
|
||||||
|
item["id"]: item["content"]
|
||||||
|
for item in todoist.state["items"]
|
||||||
|
if item["project_id"] == project_id
|
||||||
|
}
|
||||||
|
|
Reference in a new issue