From 66f34bc33d73214e308401341b70282f16d6e644 Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Sat, 25 May 2024 11:04:39 +0200 Subject: [PATCH] fix: labeler.yml with new syntax (#961) * fix: labeler.yml with new syntax * Update labeler.yml --- .github/labeler.yml | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 5f6132e78c..d772f4492d 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,24 +1,32 @@ -github_actions: - - .github/**/* +# Add labels to any any pull request with changes to the specified paths +Github Actions: +- changed-files: + - any-glob-to-any-file: '.github/**/*' -questions game: - - src/pages/questions/**/* +Questions game: +- changed-files: + - any-glob-to-any-file: 'src/pages/questions/**/*' -logo game: - - src/pages/logos/**/*, - - src/components/LogoForm.jsx, - - src/pages/logos/LogoAnnotation.jsx - - src/pages/logos/LogoDeepSearch.jsx +Logo game: +- changed-files: + - any-glob-to-any-file: 'src/pages/logos/**/*' + - any-glob-to-any-file: 'src/components/LogoForm.jsx' + - any-glob-to-any-file: 'src/pages/logos/LogoAnnotation.jsx' + - any-glob-to-any-file: 'src/pages/logos/LogoDeepSearch.jsx' -insights: - - src/pages/insights/**/* +Insights: +- changed-files: + - any-glob-to-any-file: 'src/pages/insights/**/*' -eco-score game: - - src/pages/eco-score/**/* +Eco-Score game: +- changed-files: + - any-glob-to-any-file: 'src/pages/eco-score/**/*' i18n: - - src/i18n/**/* +- changed-files: + - any-glob-to-any-file: 'src/i18n/**/*' Nutrition game: - - src/pages/nutrition/**/* - - src/pages/nutrition/index.jsx +- changed-files: + - any-glob-to-any-file: 'src/pages/nutrition/**/*' + - any-glob-to-any-file: 'src/pages/nutrition/index.jsx'