piceaTech / node-gitlab-2-github

Migrate Issues, milestones etc from gitlab to github
MIT License
547 stars 133 forks source link

Label and issues not migrate #177

Closed ecourdoisy closed 1 year ago

ecourdoisy commented 1 year ago

Hello,

I'm using node-gitlab-2-ithub to migrate issues, have "transfer complete" answer but no issues in github !

Screenshot of terminal

Capture d’écran 2023-02-24 à 15 08 28 Capture d’écran 2023-02-24 à 15 08 36

Configuration : `import Settings from './src/settings';

export default { gitlab: { url: 'https://gitlab.com', token: 'xxx', projectId: xxx, listArchivedProjects: false, sessionCookie: null, }, github: { baseUrl: 'https://github.com', apiUrl: 'https://api.github.com', owner: 'xxx', ownerIsOrg: true, token: 'xxx', token_owner: 'xxx', repo: 'xxx', recreateRepo: false, }, /s3: { accessKeyId: '{{accessKeyId}}', secretAccessKey: '{{secretAccessKey}}', bucket: 'my-gitlab-bucket', },/ usermap: { 'xxx': 'xxx', }, projectmap: { }, conversion: { useLowerCaseLabels: false, }, transfer: { description: true, milestones: true, labels: true, issues: true, mergeRequests: false, releases: false, }, debug: true, useIssueImportAPI: true, usePlaceholderMilestonesForMissingMilestones: true, usePlaceholderIssuesForMissingIssues: true, useReplacementIssuesForCreationFails: true, useIssuesForAllMergeRequests: false, filterByLabel: null, skipMergeRequestStates: [], skipMatchingComments: [], mergeRequests: { logFile: './merge-requests.json', log: true, }, } as Settings; `

Thanks for your help !