From 8e27831b4284641c244ad78dbf2f4b7f755d2832 Mon Sep 17 00:00:00 2001 From: Souvik Date: Sun, 19 Sep 2021 14:07:50 +0530 Subject: [PATCH] feat: update --- dist/index.js | 1 + src/app.ts | 1 + 2 files changed, 2 insertions(+) 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'); }