-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
27 lines (27 loc) · 891 Bytes
/
config.example.json
File metadata and controls
27 lines (27 loc) · 891 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
{
"debug_level": "WARNING",
"website": "https://current-hosted-site-for-autopush.org",
"IPsAllowList": [
"X.Y.Z.W"
],
"SSHKeysPath": "/home/myusername/.ssh",
"ReposBasePath": "/var/www",
"repos_template_uri": "git@github.com:testuser/{$repo_key}.git",
"custom_commands": {
"repo_name": [
"ls /home",
"cd $ReposBasePath/$repo",
"GIT_SSH_COMMAND=\"ssh -i $SSHKeysPath/$key \" git fetch origin"
]
},
"log_request_body": false,
"expose_raw_log": false,
"github_meta_api_url": "https://api.github.com/meta",
"github_ranges_lists": ["actions", "hooks"],
"command_timeout": 3600,
"secrets": {
"github_ghcr_token":"my secret token",
"github_ghcr_username":"myusername"
},
"whitelisted_command_strings": ["$(git symbolic-ref --short HEAD)", "echo $PWD"]
}