Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,42 @@
# Auto-label pull requests based on changed files
# Configuration for actions/labeler@v5

documentation:
- changed-files:
- any-glob-to-any-file:
- '**/*.md'
- 'docs/**/*'

workflows:
- changed-files:
- any-glob-to-any-file:
- '.github/workflows/**/*'

ci:
- changed-files:
- any-glob-to-any-file:
- '.github/workflows/**/*'
- '.github/actions/**/*'

dependencies:
- changed-files:
- any-glob-to-any-file:
- 'package.json'
- 'package-lock.json'
- 'Dockerfile'

scripts:
- changed-files:
- any-glob-to-any-file:
- 'bin/**/*'
- 'scripts/**/*'

tests:
- changed-files:
- any-glob-to-any-file:
- 'test/**/*'
- '**/*.test.js'
- '**/*.spec.js'
# Format for actions/labeler@v5

documentation:
Expand Down Expand Up @@ -30,9 +68,19 @@ tests:
configuration:
- changed-files:
- any-glob-to-any-file:
- '**/.*.yml'
- '**/.*.yaml'
- '**/.*.json'
- '.editorconfig'
- '.gitignore'
['**/.*.yml', '**/.*.yaml', '**/.*.json', '.editorconfig', '.gitignore']

community:
- changed-files:
- any-glob-to-any-file:
- 'CODE_OF_CONDUCT.md'
- 'CONTRIBUTING.md'
- 'SECURITY.md'
- 'SUPPORT.md'
- 'LICENSE'
['CODE_OF_CONDUCT.md', 'CONTRIBUTING.md', 'SECURITY.md', 'SUPPORT.md', 'LICENSE']
Loading