-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.sample
More file actions
34 lines (27 loc) · 876 Bytes
/
env.sample
File metadata and controls
34 lines (27 loc) · 876 Bytes
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
# The GitHub organization to query
ORG=...
# the name of the team to manage
TEAM_NAME=everyone
# the Personal Access Token (PAT) to use to interact with GitHub
PAT=ghp_....
# a JSON object with a list of regexes to apply to
# users to determine if they should be allowed in to
# a group or if they should be excluded
USER_FILTERS='{"login": {"reject": [ "^w" ], "allow": [ "n$" ] }}'
# the level for which events are logged with lower numbers meaning
# more verbosity
#
# DEBUG: 10
# INFO: 20 (default)
# WARNING: 30
# ERROR: 40
# CRITICAL: 50
LOG_LEVEL = 20
# If DRY_RUN is false, perform read/write operations; otherwise
# only perform read-only operations
DRY_RUN = True
# The URL to the API; the default is the URL to GitHub.com's API
# (note the absence of a trailing '/')
API_URL = https://api.github.com
# How many seconds to delay between API calls
DELAY = 3.0