forked from creatorsgarten/configuration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
154 lines (148 loc) · 4.27 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import { creator, grantAdmin, grantWriteAccess, team } from './lib'
// If you participated in our events and consider yourself a creator,
// feel free to add your username to the list below and be invited into
// the creatorsgarten organization.
//
// Once you are invited, please accept the invitation within 7 days,
// otherwise the invitation will expire.
//
// Once you are a member, you can go to the member list page at
// <https://github.com/orgs/creatorsgarten/people> and change the
// membership visibility to "Public." This will add the Creatorsgarten
// logo to your GitHub profile.
//
// As a member, you can also create Public and Private repositories
// in this organization when you work on related projects.
//
// Note that adding yourself to this list here doesn’t automatically
// grant you access to extra repositories beyond what you currently have
// access to. To access certain repositories, you must be a part of the
// respective team. The list of teams and their members are below this
// list.
//
// PLEASE KEEP THIS LIST SORTED ALPHABETICALLY.
//
creator('1tpp')
creator('badgooooor')
creator('balabeltmimi')
creator('betich')
creator('C0M3TZZ')
creator('chayapatr')
creator('DEmayonnaise')
creator('DrowningToast')
creator('dtinth')
creator('dtinth-bot')
creator('FloatKasemtan')
creator('GGolfz')
creator('Gusb3ll')
creator('heypoom')
creator('hunt')
creator('Issawat')
creator('kana2011th')
creator('Kittonn')
creator('kunnooon')
creator('Kuuuuuuuu')
creator('Leomotors')
creator('lebrancconvas')
creator('mikkipastel')
creator('Mixko50')
creator('msp5382')
creator('narze')
creator('nattpapat')
creator('ong22280')
creator('pankace')
creator('PhantipK')
creator('pp3times')
creator('PromptJS19')
creator('Qu1etboy')
creator('rayriffy')
creator('richeyphu')
creator('runyasak')
creator('SaltyAom')
creator('saltyaom-engine')
creator('siravijbb')
creator('sleepntsheep')
creator('tao-Isaman')
creator('tententgc')
creator('thitiwat-t')
creator('Thunyatorn')
creator('tinarskii')
creator('varkaria')
creator('wasdee')
creator('xb1g')
creator('wit03')
// Website team
const websiteMaintainer = team('website', {
name: 'Website',
description: 'Website maintainers',
})
websiteMaintainer('betich')
websiteMaintainer('dtinth')
websiteMaintainer('heypoom')
websiteMaintainer('rayriffy')
websiteMaintainer('chayapatr')
websiteMaintainer('SaltyAom')
websiteMaintainer('wit03')
grantAdmin('creatorsgarten.org', websiteMaintainer)
grantAdmin('grtn.org', websiteMaintainer)
// Event organizers can manage the discussions repository.
const eventOrganizer = team('organizers', {
name: 'Event organizers',
description: 'Event organizers',
})
eventOrganizer('betich')
eventOrganizer('chayapatr')
eventOrganizer('dtinth')
eventOrganizer('heypoom')
eventOrganizer('narze')
eventOrganizer('PhantipK')
eventOrganizer('rayriffy')
eventOrganizer('SaltyAom')
grantWriteAccess('discussions', eventOrganizer)
// Hacktoberfest Museum maintainers
const hacktoberfestMuseumMaintainer = team('hacktoberfestmuseum', {
name: 'Hacktoberfest Museum',
description: 'Hacktoberfest museum maintainers',
})
hacktoberfestMuseumMaintainer('Gusb3ll')
hacktoberfestMuseumMaintainer('heypoom')
hacktoberfestMuseumMaintainer('intaniger')
hacktoberfestMuseumMaintainer('Leomotors')
hacktoberfestMuseumMaintainer('ryanrw')
hacktoberfestMuseumMaintainer('runyasak')
hacktoberfestMuseumMaintainer('siravijbb')
hacktoberfestMuseumMaintainer('tinarskii')
grantWriteAccess('hacktoberfest-museum', hacktoberfestMuseumMaintainer)
// VOD team
const vodTeam = team('vod', {
name: 'VOD team',
description: 'Videos on demand team',
})
vodTeam('dtinth')
vodTeam('rayriffy')
vodTeam('wiput1999')
grantWriteAccess('videos', vodTeam)
// Kaogeek Discord bot team
const kaogeek = team('kaogeek', {
name: 'Kaogeek bot admins',
description: 'Kao.Geek Discord bot admins',
})
const kaogeekDev = team('kaogeek-dev', {
name: 'Kaogeek bot developers',
description: 'Kao.Geek Discord bot developers',
})
kaogeek('Gusb3ll')
kaogeek('LagSeeN')
kaogeek('Leomotors')
kaogeek('masuru-aomsin')
kaogeek('narze')
kaogeek('opecgame')
kaogeek('quarkhadron')
kaogeek('SaltyAom')
kaogeek('ST4RCHASER')
kaogeek('wiput1999')
grantAdmin('kaogeek-discord-bot', kaogeek)
kaogeekDev('beam41')
kaogeekDev('buskun')
kaogeekDev('samithiwat')
grantWriteAccess('kaogeek-discord-bot', kaogeekDev)