mirror of
https://gitlab.wikimedia.org/ladsgroup/Phabricator-maintenance-bot
synced 2024-11-08 13:12:38 +01:00
69f0b42311
Bug: T280171
142 lines
4 KiB
Python
142 lines
4 KiB
Python
"""
|
|
Adds tasks in configured projects to other configured projects
|
|
"""
|
|
|
|
from lib import Client
|
|
|
|
rules = [
|
|
{
|
|
# H175 - see T136921
|
|
'add': 'Design',
|
|
'in': ['WMF-Design', 'WMDE-Design'],
|
|
},
|
|
{
|
|
# H232
|
|
'add': 'artificial-intelligence',
|
|
'in': ['editquality-modeling', 'draftquality-modeling', 'articlequality-modeling', 'revscoring'],
|
|
},
|
|
{
|
|
# H193 - see T146701
|
|
'add': 'accessibility',
|
|
'in': ['ios-app-feature-accessibility'],
|
|
},
|
|
{
|
|
# H174
|
|
'add': 'upstream',
|
|
'in': ['phabricator-upstream'],
|
|
},
|
|
{
|
|
# H24 - see T86536
|
|
'add': 'universallanguageselector',
|
|
'in': ['uls-compactlinks'],
|
|
},
|
|
{
|
|
# H15 - note that #producrement tasks are private -> rule can't be disabled
|
|
'add': 'Operations',
|
|
'in': [
|
|
'ops-eqiad',
|
|
'ops-codfw',
|
|
'ops-esams',
|
|
'ops-ulsfo',
|
|
# 'hardware-requests', archived project
|
|
'SRE-Access-Requests',
|
|
'netops',
|
|
'vm-requests',
|
|
'Traffic',
|
|
'ops-eqord',
|
|
'ops-eqdfw',
|
|
# 'procurement', always in S4
|
|
'ops-eqsin',
|
|
'DNS',
|
|
'LDAP-Access-Requests',
|
|
'Wikimedia-Mailing-lists',
|
|
],
|
|
},
|
|
{
|
|
# H14 - see T85596
|
|
'add': 'Social-Tools',
|
|
'in': [
|
|
'BlogPage',
|
|
'Comments',
|
|
'FanBoxes',
|
|
'LinkFilter',
|
|
'PollNY',
|
|
'QuizGame',
|
|
# 'RandomFeaturedUser', archived project
|
|
'RandomGameUnit',
|
|
'SocialProfile',
|
|
'SiteMetrics',
|
|
'VoteNY',
|
|
'WikiForum',
|
|
'WikiTextLoggedInOut',
|
|
'Challenge',
|
|
'MiniInvite',
|
|
# 'NewUsersList', archived project
|
|
'PictureGame',
|
|
# 'RandomUsersWithAvatars', archived project
|
|
'video_non-wmf',
|
|
# 'TopLists', archived project
|
|
],
|
|
},
|
|
{
|
|
# H10 - see T76954
|
|
'add': 'VisualEditor',
|
|
'in': [
|
|
'VisualEditor-ContentEditable',
|
|
'VisualEditor-ContentLanguage',
|
|
'VisualEditor-CopyPaste',
|
|
'VisualEditor-DataModel',
|
|
'VisualEditor-EditingTools',
|
|
'VisualEditor-Initialisation',
|
|
'VisualEditor-InterfaceLanguage',
|
|
'VisualEditor-MediaWiki',
|
|
'VisualEditor-MediaWiki-Links',
|
|
'VisualEditor-MediaWiki-Media',
|
|
'VisualEditor-MediaWiki-Mobile',
|
|
'VisualEditor-MediaWiki-References',
|
|
'VisualEditor-MediaWiki-Templates',
|
|
'VisualEditor-Performance',
|
|
'VisualEditor-Tables',
|
|
'TemplateData',
|
|
'VisualEditor-MediaWiki-Plugins',
|
|
'VisualEditor-LanguageTool',
|
|
'VisualEditor-Links',
|
|
'VisualEditor-Media',
|
|
'VisualEditor-MediaWiki-2017WikitextEditor',
|
|
'VisualEditor-VisualDiffs',
|
|
],
|
|
},
|
|
{
|
|
# T280119
|
|
'add': 'observability',
|
|
'in': [
|
|
'wikimedia-logstash',
|
|
'icinga',
|
|
'graphite',
|
|
],
|
|
},
|
|
{
|
|
'add': 'user-urbanecm-wmf-engineering',
|
|
'in': [
|
|
'growth-deployments',
|
|
]
|
|
}
|
|
]
|
|
|
|
client = Client.newFromCreds()
|
|
|
|
for rule in rules:
|
|
handled_tasks = []
|
|
|
|
wanted_project_phid = client.lookupPhid('#' + rule['add'])
|
|
for project_name in rule['in']:
|
|
project_phid = client.lookupPhid('#' + project_name)
|
|
for task_phid in client.getTasksWithProject(project_phid):
|
|
# if a task is in multiple 'in' projects, still only process it once
|
|
if task_phid in handled_tasks:
|
|
continue
|
|
handled_tasks.append(task_phid)
|
|
|
|
task = client.taskDetails(task_phid)
|
|
if wanted_project_phid not in task['projectPHIDs']:
|
|
client.addTaskProject(task_phid, wanted_project_phid)
|