-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.yml
73 lines (61 loc) · 1.77 KB
/
config.yml
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
# time to wait in minutes between checking for new client builds
client_check_delay = 5
# time to wait in minutes between checking for new launcher builds
launcher_check_delay = 30
output:
logging:
enabled = true
debug = true
# log messages to the console when a new build is available
console:
enabled: true
# use colors to denote message severity levels
colors: true
# log to a file when a new build is available
file:
enabled: true
name: "extractor.log"
warnings: "extractor.warn.log"
errors: "extractor.errors.log"
# send a Discord webhook to a channel when a new build is available
discord:
enabled: true
color: "#3366a9"
# a list of webooks that will be contacted
webhooks:
- exampleone:
- url: ""
# the id of a role that can receive a ping (leave blank to disable)
- role: ""
- exampletwo:
- url: ""
- role: ""
# upload files via SSH file transfer when a new build is available
ssh:
enabled: true
hostname: "test"
port: 21
username: "test" # optional
password: "test" # optional
# the remote directory for uploading the build
directory: ""
# upload files via an FTP server when a new build is available
ftp:
enabled: false
hostname: "127.0.0.1"
port: 21
username: "test" # optional
password: "test" # optional
# the remote directory for uploading the build
directory: ""
# send a redis pub-sub message to a channel when a new build is available
redis:
enabled: false
hostname: "127.0.0.1"
port: "6739"
username: "" # optional
password: "" # optional
# a list of channels to send a publish message to
channels:
- name: "build-updates"
- name: "example-channel"