-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-config.json
53 lines (47 loc) · 1.16 KB
/
sample-config.json
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
{
"interactiveProgress": true,
"showErrorStacktraces": false,
"servers": [
{
"type": "GITLAB",
"baseURL": "https://www.gitlab.com",
"apiToken": {
"type": "INLINE",
"value": "api-token-here"
},
"syncLabel": "optional-server-wide-sync-tag",
"sshCreds": {
"publicKey": {
"type": "FILE",
"location": "/some/directory"
},
"privateKey": {
"type": "ENVIRONMENT",
"envVar": "SSH_PRIVKEY"
}
},
"projectsToSync": [
{
"pathWithNamespace": "emanguy/project1",
"sshCloneURL": "[email protected]:emanguy/project1"
},
{
"pathWithNamespace": "emanguy/project2",
"sshCloneURL": "[email protected]:emanguy/project2",
"syncLabel": "sync-tag-specific-to-project",
"mainBranchName": "main",
"sshCreds": {
"publicKey": {
"type": "INLINE",
"value": "A PUBLIC KEY"
},
"privateKey": {
"type": "INLINE",
"value": "A PRIVATE KEY"
}
}
}
]
}
]
}