From 73a88a951e11ed7a255de280c5f90b1b07bccfec Mon Sep 17 00:00:00 2001 From: Kirill Plis Date: Tue, 5 May 2026 09:33:18 +0200 Subject: [PATCH] fix: update labeler config structure to fit v6 format --- .github/labeler.yaml | 97 ++++++++++++++++++++++++++++---------------- 1 file changed, 63 insertions(+), 34 deletions(-) diff --git a/.github/labeler.yaml b/.github/labeler.yaml index 7247538..2e44f03 100644 --- a/.github/labeler.yaml +++ b/.github/labeler.yaml @@ -1,44 +1,73 @@ build: - - "Makefile" - - "**/tsconfig.*" - - "tsconfig.*" + - changed-files: + - any-glob-to-any-file: + - Makefile + - "**/tsconfig.*" + - tsconfig.* + ci: - - ".github/workflows/*" - - ".github/workflows/**/*" + - changed-files: + - any-glob-to-any-file: + - .github/workflows/* + - .github/workflows/**/* + deps: - - "go.mod" - - "go.sum" - - "package.json" - - "package-lock.json" + - changed-files: + - any-glob-to-any-file: + - go.mod + - go.sum + - package.json + - package-lock.json + deployment: - - ".dockerignore" - - "Containerfile" - - "Dockerfile" - - "plconfig.yaml" + - changed-files: + - any-glob-to-any-file: + - .dockerignore + - Containerfile + - Dockerfile + - plconfig.yaml + docs: - - "CODEOWNERS" - - "*.md" - - "**/*.md" + - changed-files: + - any-glob-to-any-file: + - CODEOWNERS + - "*.md" + - "**/*.md" + json: - - "*.json" - - "**/*.json" + - changed-files: + - any-glob-to-any-file: + - "*.json" + - "**/*.json" + shell: - - "*.sh" - - "**/*.sh" + - changed-files: + - any-glob-to-any-file: + - "*.sh" + - "**/*.sh" + style: - - ".eslintignore" - - ".eslintrc.js" - - ".prettierignore" - - ".prettierrc.json" + - changed-files: + - any-glob-to-any-file: + - .eslintignore + - .eslintrc.js + - .prettierignore + - .prettierrc.json + test: - - "**/*.spec.js" - - "**/*.spec.ts" - - "**/*.test.js" - - "**/*.test.ts" - - "**/__test__/*" - - "**/__test__/**/*" + - changed-files: + - any-glob-to-any-file: + - "**/*.spec.js" + - "**/*.spec.ts" + - "**/*.test.js" + - "**/*.test.ts" + - "**/__test__/*" + - "**/__test__/**/*" + yaml: - - "*.yaml" - - "*.yml" - - "**/*.yaml" - - "**/*.yml" + - changed-files: + - any-glob-to-any-file: + - "*.yaml" + - "*.yml" + - "**/*.yaml" + - "**/*.yml"