We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 126dd9f commit 675e6b3Copy full SHA for 675e6b3
src/index.ts
@@ -464,7 +464,7 @@ async function transferIssues() {
464
for (let issue of issues) {
465
// try to find a GitHub issue that already exists for this GitLab issue
466
let githubIssue = githubIssues.find(
467
- i => i.title.trim() === issue.title.trim()
+ i => i.title.trim() === issue.title.trim() && i.body.includes(issue.web_url)
468
);
469
if (!githubIssue) {
470
console.log(`\nMigrating issue #${issue.iid} ('${issue.title}')...`);
0 commit comments