forked from creatorsgarten/configuration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
57 lines (55 loc) · 1.72 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
import { creator, grantAdmin, 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('betich')
creator('C0M3TZZ')
creator('chayapatr')
creator('dtinth')
creator('GGolfz')
creator('Gusb3ll')
creator('heypoom')
creator('Issawat')
creator('kana2011th')
creator('Kittonn')
creator('Leomotors')
creator('mikkipastel')
creator('msp5382')
creator('narze')
creator('pankace')
creator('pp3times')
creator('PromptJS19')
creator('rayriffy')
creator('SaltyAom')
creator('sleepntsheep')
creator('tententgc')
creator('varkaria')
// Website team
const websiteMaintainer = team('website', {
name: 'Website',
description: 'Website maintainers',
})
websiteMaintainer('dtinth')
websiteMaintainer('heypoom')
websiteMaintainer('chayapatr')
grantAdmin('creatorsgarten.org', websiteMaintainer)