Skip to content

Commit

Permalink
Fix labler configuration after breaking change (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
echoscriptor committed Dec 20, 2023
1 parent 265d774 commit d913982
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit d913982

Please sign in to comment.