From e016b3be5d6de070d996a947db830171ef896608 Mon Sep 17 00:00:00 2001 From: Yogendra Shelke Date: Wed, 25 Mar 2026 15:03:42 +0530 Subject: [PATCH] fix: update labeler configuration for changed-files syntax and trigger event --- .github/configs/labeler.yml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/.github/configs/labeler.yml b/.github/configs/labeler.yml index 72f7f97ee..0fd3e875a 100644 --- a/.github/configs/labeler.yml +++ b/.github/configs/labeler.yml @@ -1,12 +1,18 @@ documentation: - - all: ["*.md"] + - changed-files: + - any-glob-to-all-files: ["*.md"] Core: - - .github/**/* - - .husky/**/* - - data/**/* - - scripts/**/* + - changed-files: + - any-glob-to-any-file: + - .github/**/* + - .husky/**/* + - data/**/* + - scripts/**/* Widget: - - packages/**/*-native*/**/* - - packages/**/*_native*/**/* + - changed-files: + - any-glob-to-any-file: + - packages/**/*-native*/**/* + - packages/**/*_native*/**/* test: - - all: ["*.spec.*"] + - changed-files: + - any-glob-to-all-files: ["*.spec.*"]