From ae2fc0d73bc826926ee41bcc005487bdcd9ad065 Mon Sep 17 00:00:00 2001 From: xHyroM Date: Sat, 16 Jul 2022 15:58:55 +0200 Subject: [PATCH] chore(validateTags): add tags label --- scripts/validateTags/src/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/validateTags/src/index.ts b/scripts/validateTags/src/index.ts index cfd799b..c7805fb 100644 --- a/scripts/validateTags/src/index.ts +++ b/scripts/validateTags/src/index.ts @@ -18,6 +18,13 @@ let tags; try { // @ts-expect-error types tags = (await import('../../../files/tags.toml')).default; + + requestGithub( + `issues/${pullRequestNumber}/labels`, + { + labels: ['tags'] + } + ); } catch(e) { tags = []; errors.push(e.message);