diff --git a/dist/index.js b/dist/index.js index 6253114..a015d5d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -250,6 +250,7 @@ class App { url: issue.html_url, body: issue.body || '' }); + await this.notion.updateLabel(issue.id, issue.labels); console.log('✅ Issue successfully Synced'); } async issueClosed(issue) { diff --git a/src/app.ts b/src/app.ts index 7c517f0..2f2f825 100644 --- a/src/app.ts +++ b/src/app.ts @@ -44,6 +44,7 @@ export class App { url: issue.html_url, body: issue.body || '' }) + await this.notion.updateLabel(issue.id, issue.labels); console.log('✅ Issue successfully Synced'); }