This repository has been archived by the owner on Oct 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcrhub.conf
42 lines (37 loc) · 1.42 KB
/
crhub.conf
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
[general]
# the path to use for the sqlite3 DB
# in daemon mode, make sure you write the full path
# ...and that you have the correct permissions
db_path = "test.db"
# settings for sinatra
[sinatra]
bind = 0.0.0.0
port = 4567
environment = production
# default / global settings which apply to all repositories
# each setting can be overriden by individual repositories
[repo-default]
# enable / disable reviewer self-assignment in Github
# if disabled, and if the creator of the pull request and the assigned reviewer
# are the same Github user, crhub will always report a "failure" status
with_self_assign = false
# these users can self-assign pull requests even if with_self_assign
# is set to "false" for this repo
users_with_self_assign =
# for the Github users listed below, the reported status is always
# "success" for all pull requests, even if a review has not been done
users_bypass =
# to run a custom command on the repo, define it here. The command will be run
# with the cloned repository as the working directory. This is typically used to
# run a style checker (e.g. clang-format).
checker_cmd =
# the checker needs to clone the repo. You need to provide an access mode for this
# (ssh or https)
access_mode = https
# ADD YOUR REPOS HERE
# e.g.:
# [repo:antoninbas/crhub]
# with_self_assign = true
# users_bypass = antoninbas
# access_mode = ssh
# notice the 'repo:' before the actual repository name in the option group name!