archive
/
todoist-github
Archived
1
Fork 0

Print when creating PR tasks, too!

This commit is contained in:
Jake Howard 2020-01-11 12:59:03 +00:00
parent 2914b10392
commit 060ee12314
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@ def prs_to_review():
for issue in github.search_issues(search_string):
task = relevant_tasks.get(issue.html_url)
if not task and issue.state == "open":
print("Creating", issue)
task = todoist.items.add(pr_to_task_name(issue))
if not task:
continue