From 036f3fc389af8a9cd9896f90dd3967194603f645 Mon Sep 17 00:00:00 2001 From: maruf-pfc Date: Mon, 6 Apr 2026 00:53:01 +0600 Subject: [PATCH] fix: update labeler.yml to actions/labeler v5 schema --- .github/labeler.yml | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index d852531..bed9e71 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,25 +1,32 @@ # Add 'frontend' label to any changes in src frontend: -- src/**/* + - changed-files: + - any-glob-to-any-file: 'src/**/*' # Add 'tests' label to any changes in tests tests: -- tests/**/* + - changed-files: + - any-glob-to-any-file: 'tests/**/*' # Add 'ci' label to any changes in .github/workflows ci: -- .github/workflows/**/* + - changed-files: + - any-glob-to-any-file: '.github/workflows/**/*' # Add 'docker' label to any changes in Dockerfile or docker-compose docker: -- Dockerfile -- docker-compose.yml -- nginx.conf + - changed-files: + - any-glob-to-any-file: + - 'Dockerfile' + - 'docker-compose.yml' + - 'nginx.conf' # Add 'docs' label to any changes in README, CONTRIBUTING, etc. docs: -- README.md -- CONTRIBUTING.md -- CODE_OF_CONDUCT.md -- SECURITY.md -- LICENSE + - changed-files: + - any-glob-to-any-file: + - 'README.md' + - 'CONTRIBUTING.md' + - 'CODE_OF_CONDUCT.md' + - 'SECURITY.md' + - 'LICENSE'