Skip to content

Commit 1fe798e

Browse files
authored
Merge pull request #376 from cloudfoundry/org-admins
Move all org admins into TOC charter
2 parents a467b44 + 084a72e commit 1fe798e

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

org/cloudfoundry.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
---
22
orgs:
33
cloudfoundry:
4-
admins:
5-
- christopherclark
6-
- halliwilljustin
7-
- mjear
8-
- ramiyengar
9-
- thelinuxfoundation
4+
admins: [] # shall be empty, maintained in TOC.md
105
billing_email: [email protected]
116
company: ""
127
default_repository_permission: none

org/test_org_management.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,9 @@ def test_cf_org(self):
311311

312312
o.generate_org_members()
313313
members = o.org_cfg["orgs"]["cloudfoundry"]["members"]
314+
admins = o.org_cfg["orgs"]["cloudfoundry"]["admins"]
314315
self.assertGreater(len(members), 100)
316+
self.assertGreater(len(admins), 7) # 5 toc members + CFF technical staff
315317
self.assertIn("cf-bosh-ci-bot", members)
316318

317319
o.generate_teams()
@@ -323,5 +325,6 @@ def test_cf_org(self):
323325
self.assertIn("cf-deployment", teams["wg-app-runtime-deployments"]["teams"]["wg-app-runtime-deployments-bots"]["repos"])
324326
self.assertIn("cf-gitbot", teams["wg-app-runtime-deployments"]["teams"]["wg-app-runtime-deployments-bots"]["members"])
325327
self.assertIn("toc", teams)
328+
self.assertEquals(5, len(teams["toc"]["maintainers"]))
326329
self.assertIn("community", teams["toc"]["repos"])
327330
self.assertIn("wg-leads", teams)

toc/TOC.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,13 @@ execution_leads:
129129
github: rkoster
130130
- name: Stephan Merker
131131
github: stephanme
132-
technical_leads: []
132+
technical_leads:
133+
- name: Chris Clark
134+
github: christopherclark
135+
- name: Ram Iyengar
136+
github: ramiyengar
137+
- name: The Linux Foundation
138+
github: thelinuxfoundation
133139
bots: []
134140
areas:
135141
- name: CloudFoundry Community

0 commit comments

Comments
 (0)