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);