diff options
-rw-r--r-- | phabricator_tasks/tasks.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/phabricator_tasks/tasks.py b/phabricator_tasks/tasks.py index 254a8e4..3fbe2f2 100644 --- a/phabricator_tasks/tasks.py +++ b/phabricator_tasks/tasks.py @@ -67,12 +67,13 @@ for task in tasks: # Tag tasks "Bug" for ease of searching - if task['issue_type'] in ['bug', 'vulnerability']: - print(f'Categorizing task T{task["task_id"]} as bug based on its issue type') - if DRYRUN: - pass - else: - add_project(task['task_id'], BUGS_PROJECT, TOKEN) + # XXX: disabled due to issue with statuses for now + #if task['issue_type'] in ['bug', 'vulnerability']: + # print(f'Categorizing task T{task["task_id"]} as bug based on its issue type') + # if DRYRUN: + # pass + # else: + # add_project(task['task_id'], BUGS_PROJECT, TOKEN) # Tag tasks "Uncategorized tasks" to draw maintainer attention to them # if "Issue type" is not specified |