-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.toml.in
49 lines (42 loc) · 1.17 KB
/
config.toml.in
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
[checker]
# How frequently to run the check
interval = "10m"
# Number of scraping workers to spawn
workers = 10
[checker.db]
path = "$HOME/.github-release-checker/sqlite.db"
[checker.repositories]
# Repos to ignore
ignored = [ "" ]
# Repos to mark as "important". This is useful to e.g. send push
# notification emails for releases of certain repos.
important = [ "" ]
[checker.github]
# Your Github username
user = ""
# Your Github access token. Only "public access" must be granted.
# Generate a token here: https://github.com/settings/tokens
token = ""
[mail]
# Whether to send email notifications on new releases
enabled = false
# Number of mail workers
workers = 1
# Whether to accept untrusted certificates
insecure = false
# How to connect to the mail server
host = "localhost"
port = 25
user = ""
pswd = ""
# Sender address
from = "from@example.com"
# Recipient addresses
to = [ "to@example.com" ]
# Recipient addresses for "important" releases, e.g. a Boxcar
# email address: https://boxcar.io/
important_to = [ "important-to@example.com" ]
# Subject template
subject = "New release of $fullName"
# Body template
body = "New release of $url : $version"