summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2024-12-08 14:28:18 +0000
committerDaniil Baturin <daniil@baturin.org>2024-12-08 14:28:18 +0000
commit878fe8d923eb6601f97b4c4e1766eb122086eeab (patch)
treea6fdbf79cba8b641ef8891ab894269267aa554a1
parent10da94464be481fe77965bbe035744c3c2cc29ad (diff)
downloadvyos-infrastructure-main.tar.gz
vyos-infrastructure-main.zip
Remove tagging of uncategorized tasksHEADmain
Now we can simply search by that field
-rw-r--r--phabricator_tasks/tasks.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/phabricator_tasks/tasks.py b/phabricator_tasks/tasks.py
index fb9b2e5..63f5626 100644
--- a/phabricator_tasks/tasks.py
+++ b/phabricator_tasks/tasks.py
@@ -62,11 +62,3 @@ for task in tasks:
else:
unassign_task(task['task_id'], TOKEN)
- # Tag tasks "Uncategorized tasks" to draw maintainer attention to them
- # if "Issue type" is not specified
- if task['issue_type'] == 'unspecified':
- print(f'Marking task T{task["task_id"]} uncategorized based on its issue type')
- if DRYRUN:
- pass
- else:
- add_project(task['task_id'], UNCATEGORIZED_TASKS_PROJECT, TOKEN)