forked from brndnmtthws/labhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LabHub.toml
executable file
·47 lines (42 loc) · 955 Bytes
/
LabHub.toml
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
# List of enabled features
features = [
"external_pr",
"commands"
]
# Command settings
[commands]
# List of commands to enable
enabled_commands = [
"retry",
]
# Settings for GitHub
[github]
webhook_secret = "secret"
username = "ci-user"
ssh_key = "/etc/ssh-keys/labhub-key.ecdsa"
api_token = "token"
hostname = "github.com"
# Settings for GitLab
[gitlab]
webhook_secret = "secret"
username = "ci-user"
ssh_key = "/etc/ssh-keys/labhub-key.ecdsa"
api_token = "token"
hostname = "gitlab.com"
# List of mappings to/from GitHub & GitLab
[[mappings]]
github_repo = "brndnmtthws/labhub"
gitlab_repo = "brndnmtthws-oss/labhub"
[[mappings]]
github_repo = "brndnmtthws/conky"
gitlab_repo = "brndnmtthws-oss/conky"
# ========== custom config ==========
# customize pull request events
[pull_request_event_trigger_actions]
# list of enabled trigger actions
enabled_trigger_actions = [
"synchronize",
"opened",
"reopened",
"closed",
]