add UC repos to governance module

Change-Id: I44394ea633926a37a1dbdcb88b880368defd87b9
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-08-30 18:46:40 -04:00
parent 150748adce
commit 6381d97f80
1 changed files with 37 additions and 0 deletions

View File

@ -83,6 +83,43 @@ class Governance:
},
}
team_data['User Committee'] = {
'deliverables': {
'Enterprise Working Group': {
'repos': [
'openstack/enterprise-wg',
'openstack/workload-ref-archs',
],
},
'Ops Tags Team': {
'repos': [
'openstack/ops-tags-team',
],
},
'Product Working Group': {
'repos': [
'openstack/development-proposals',
],
},
'Public Cloud Working Group': {
'repos': [
'openstack/publiccloud-wg',
],
},
'Scientific Working Group': {
'repos': [
'openstack/scientific-wg',
],
},
'User Committee': {
'repos': [
'openstack/governance-uc',
'openstack/uc-recognition',
],
},
},
}
by_repos = {}
for team, info in team_data.items():
for dname, dinfo in info.get('deliverables', {}).items():