-
Notifications
You must be signed in to change notification settings - Fork 102
/
cfg.sample.toml
81 lines (61 loc) · 1.59 KB
/
cfg.sample.toml
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
[github]
# Information for securely interacting with GitHub. These are found/generated
# under <https://github.com/settings/applications>.
# A GitHub personal access token
access_token = ""
# A GitHub oauth application for this instance of homu:
app_client_id = ""
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 = false
# SSH private key. Needed only when the local Git command is used
#ssh_key = """
#"""
[web]
# The port homu listens on
port = 54856
# An example configuration for repository (there can be many of these)
[repo.NAME]
# github.com/<owner>/<name>
owner = ""
name = ""
# who has r+ rights?
reviewers = ["barosl", "graydon"]
# who has 'try' rights? (try, retry, force, clean, prioritization)
try_users = []
# Keep the commit history linear. Requires the local Git command
#linear = false
# Auto-squash commits. Requires the local Git command
#autosquash = true
## branch names (these settings here are the defaults)
#[repo.NAME.branch]
#
#auto = "auto"
#try = "try"
#rollup = "rollup"
[repo.NAME.github]
# arbitrary secret (e.g. openssl rand -hex 20)
secret = ""
## Use buildbot for running tests
#[repo.NAME.buildbot]
#
#url = ""
#secret = ""
#
#builders = ["auto-linux", "auto-mac"]
#try_builders = ["try-linux", "try-mac"]
#
#username = ""
#password = ""
## Use travis for running tests
#[repo.NAME.travis]
#
## found under <https://travis-ci.org/profile/info>.
#token = ""
## Use the Status API
#[repo.NAME.status]
#
## String label set by status updates
#context = ""