Skip to content

Commit

Permalink
Remove tagging of uncategorized tasks
Browse files Browse the repository at this point in the history
Now we can simply search by that field
  • Loading branch information
dmbaturin committed Dec 8, 2024
1 parent 10da944 commit 878fe8d
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions phabricator_tasks/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,3 @@
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)

0 comments on commit 878fe8d

Please sign in to comment.