From d91398221417cb5bf2f5a4abd4f8996f3f0e7002 Mon Sep 17 00:00:00 2001 From: Spark 117 <83657838+spark117code@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:43:39 +0530 Subject: [PATCH] Fix labler configuration after breaking change (#33) --- .github/labeler.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 07d7fb1..57aac10 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,35 +1,35 @@ Examples: - - 'examples/**' + - any: ["examples/**"] Library: - - 'lib/**' + - all: ["lib/**"] ReadMe: - - 'readme.md' + - all: ["readme.md"] CodeEditor: - - '.vscode/**' + - all: [".vscode/**"] Tests: - - any: ['test/**', '**/*.test.ts', '**/*.test.js'] + - any: ["test/**", "**/*.test.ts", "**/*.test.js"] Core: - - 'lib/core/**' + - all: ["lib/core/**"] CoreWithTests: - - all: ['lib/core/**', 'test/**'] + - all: ["lib/core/**", "test/**"] Actions: - - '.github/**' + - all: [".github/**"] Docs: - - 'Docs/**' + - all: ["Docs/**"] Types: - - 'lib/types/**' + - all: ["lib/types/**"] Packages: - - '**/**/package*.json' + - all: ["**/**/package*.json"] Codeowners: - - '.github/CODEOWNERS' + - all: [".github/CODEOWNERS"]