forked from piceaTech/node-gitlab-2-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_settings.js
More file actions
29 lines (29 loc) · 770 Bytes
/
Copy pathsample_settings.js
File metadata and controls
29 lines (29 loc) · 770 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
28
29
module.exports = {
"gitlab": {
"url": "http://gitlab.mycompany.com/", // probably: https://gitlab.com
"token": "{{gitlab private token}}",
"projectId": null
},
"github": {
// "baseUrl":"https://gitlab.mycompany.com:123/etc",
"owner": "{{repository owner (user or organization)}}",
"token": "{{token}}",
"repo": "{{repo}}"
},
"usermap": {
"username.gitlab.1": "username.github.1",
"username.gitlab.2": "username.github.2"
},
"projectmap": {
"gitlabgroup/projectname.1": "GitHubOrg/projectname.1",
"gitlabgroup/projectname.2": "GitHubOrg/projectname.2"
},
"conversion": {
"useLowerCaseLabels": true
},
"debug": false,
"mergeRequests": {
"logFile": "./merge-requests.json",
"log": false
}
}