-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
27 lines (22 loc) · 840 Bytes
/
config.py
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
####################################################
# This file contains the user configuration. #
# You will need to change the values in this file. #
####################################################
#
# GitHub API information
#
# The GitHub repository to add the Pull Request to:
GITHUB_REPO = 'github_repo'
# Pull requests will be created by this GitHub user if the real user is not
# in the map below
github_default_username = 'github_default_username'
# Maps Github user names to their Github access tokens. The tokens can be
# generated in Settings -> Developer Settings -> Personal access tokens,
# Generate new token. Only the public_repo scope is necessary.
github_tokenmap = {
'github_user': 'github_token',
}
# Maps Gerrit user names to Github user names:
github_usermap = {
'Gerrit user': 'github_user',
}