forked from rust-lang/rust-central-station
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomu.toml.template
254 lines (211 loc) · 4.54 KB
/
homu.toml.template
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
max_priority = 9001
[db]
file = '/data/main.db'
[github]
# Information for securely interacting with GitHub. These are found/generated
# under <https://github.com/settings/applications>.
# A GitHub personal access token
access_token = "{{ homu.github.access-token }}"
# A GitHub oauth application for this instance of homu:
app_client_id = "{{ homu.github.app-client-id }}"
app_client_secret = "{{ homu.github.app-client-secret }}"
[git]
# Use the local Git command. Required to use some advanced features. It also
# speeds up Travis by reducing temporary commits
local_git = true
# SSH private key. Needed only when the local Git command is used
ssh_key = """
{{ homu.ssh.ssh-key }}
"""
[web]
host = '127.0.0.1'
port = 7942
[repo.rust]
owner = "rust-lang"
name = "rust"
# who has r+ rights?
reviewers = [
# core
"nrc",
"alexcrichton",
"wycats",
"steveklabnik",
"nikomatsakis",
"carols10cents",
"aturon",
"erickt",
# lang
"cramertj",
"withoutboats",
"eddyb",
# also on core: "nrc",
"pnkfelix",
# also on core: "nikomatsakis",
# also on core: "aturon",
# libs
# also on core: "alexcrichton",
"sfackler",
"BurntSushi",
"Kimundi",
"dtolnay",
# also on core: "aturon",
# compiler
"arielb1",
# also on lang: "eddyb",
"estebank",
# also on core: "nrc",
"petrochenkov",
# also on lang: "pnkfelix",
# also on core: "nikomatsakis",
"jseyfried",
"michaelwoerister",
# dev tools
"fitzgen",
"japaric",
"jonathandturner",
"killercup",
"matklad",
# also on compiler: "michaelwoerister",
# also on core: "nrc",
# infra
# also on core: "alexcrichton",
"shepmaster",
"aidanhs",
"TimNN",
# also on core: "carols10cents",
"Mark-Simulacrum",
# also on core: "erickt",
"tomprince",
"kennytm",
# also on core: "aturon",
# docs
# also on core: "steveklabnik",
"GuillaumeGomez",
"frewsxcv",
"QuietMisdreavus",
# alumni
"Aatch",
"pcwalton",
"huonw",
"dotdash",
"bkoropoff",
# bots
"bors",
# other
"FlaPer87",
"Luqmana",
"Manishearth",
"apasel422",
"bluss",
"bstrie",
"cmr",
"jdm",
"jroesch",
"kballard",
"sanxiyn",
"vadimcn",
"nagisa",
]
# who has 'try' rights? (try, retry, force, clean, prioritization)
try_users = [
"est31",
]
[repo.rust.github]
secret = "{{ homu.repo-secrets.rust }}"
[repo.rust.status.travis]
context = "continuous-integration/travis-ci/push"
[repo.rust.status.appveyor]
context = "continuous-integration/appveyor/branch"
try = false
[repo.cargo]
owner = "rust-lang"
name = "cargo"
reviewers = [
# cargo team
"alexcrichton",
"carols10cents",
"withoutboats",
"matklad",
"wycats",
"joshtriplett",
"aturon",
# alumni
"carllerche",
"huonw",
# other
"steveklabnik",
"Mark-Simulacrum",
]
try_users = []
[repo.cargo.branch]
auto = "auto-cargo"
[repo.cargo.github]
secret = "{{ homu.repo-secrets.cargo }}"
[repo.cargo.status.travis]
context = "continuous-integration/travis-ci/push"
[repo.cargo.status.appveyor]
context = "continuous-integration/appveyor/branch"
[repo.libc]
owner = "rust-lang"
name = "libc"
reviewers = [
"alexcrichton",
]
try_users = []
[repo.libc.branch]
auto = "auto-libc"
[repo.libc.github]
secret = "{{ homu.repo-secrets.libc }}"
[repo.libc.status.travis]
context = "continuous-integration/travis-ci/push"
[repo.libc.status.appveyor]
context = "continuous-integration/appveyor/branch"
[repo.rustup-rs]
owner = "rust-lang-nursery"
name = "rustup.rs"
reviewers = [
"alexcrichton",
"Diggsey",
"nrc",
]
try_users = []
[repo.rustup-rs.branch]
auto = "auto"
[repo.rustup-rs.github]
secret = "{{ homu.repo-secrets.rustup }}"
[repo.rustup-rs.status.travis]
context = "continuous-integration/travis-ci/push"
[repo.rustup-rs.status.appveyor]
context = "continuous-integration/appveyor/branch"
[repo.compiler-builtins]
owner = "rust-lang-nursery"
name = "compiler-builtins"
reviewers = [
"alexcrichton",
"japaric",
"Amanieu",
]
try_users = []
[repo.compiler-builtins.branch]
auto = "auto"
[repo.compiler-builtins.github]
secret = "{{ homu.repo-secrets.compiler-builtins }}"
[repo.compiler-builtins.status.travis]
context = "continuous-integration/travis-ci/push"
[repo.compiler-builtins.status.appveyor]
context = "continuous-integration/appveyor/branch"
[repo.regex]
owner = "rust-lang"
name = "regex"
reviewers = [
"BurntSushi",
]
try_users = []
[repo.regex.branch]
auto = "auto"
[repo.regex.github]
secret = "{{ homu.repo-secrets.regex }}"
[repo.regex.status.travis]
context = "continuous-integration/travis-ci/push"
[repo.regex.status.appveyor]
context = "continuous-integration/appveyor/branch"