-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabeler.yml
More file actions
86 lines (74 loc) · 2.1 KB
/
labeler.yml
File metadata and controls
86 lines (74 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Label mapping for actions/labeler.
# Docs: https://github.com/actions/labeler
#
# Each key is a label name. Each value is one or more glob patterns.
# A PR is labelled when any changed file matches a pattern.
# ── Type ────────────────────────────────────────────────────────────
bug:
- any: ['**']
documentation:
- changed-files:
- any-glob-to-any-file:
- '**/*.md'
- 'docs/**'
- '.github/**/*.md'
- 'README*'
- 'CHANGELOG*'
# ── Area ────────────────────────────────────────────────────────────
frontend:
- changed-files:
- any-glob-to-any-file:
- '**/*.html'
- '**/*.css'
- '**/*.scss'
- '**/*.jsx'
- '**/*.tsx'
javascript:
- changed-files:
- any-glob-to-any-file:
- '**/*.js'
- '**/*.ts'
- '**/*.mjs'
- '**/*.cjs'
python:
- changed-files:
- any-glob-to-any-file:
- '**/*.py'
- 'requirements*.txt'
- 'pyproject.toml'
- 'setup.py'
- 'setup.cfg'
rust:
- changed-files:
- any-glob-to-any-file:
- '**/*.rs'
- 'Cargo.toml'
- 'Cargo.lock'
# ── Infrastructure ──────────────────────────────────────────────────
ci:
- changed-files:
- any-glob-to-any-file:
- '.github/workflows/**'
- '.github/**/*.yml'
- '.github/**/*.yaml'
dependencies:
- changed-files:
- any-glob-to-any-file:
- 'package.json'
- 'package-lock.json'
- 'yarn.lock'
- 'pnpm-lock.yaml'
- 'requirements*.txt'
- 'Cargo.toml'
- 'Cargo.lock'
- 'pyproject.toml'
config:
- changed-files:
- any-glob-to-any-file:
- '.eslintrc*'
- '.prettierrc*'
- '.gitattributes'
- 'vale.ini'
- 'tsconfig*.json'
- 'vite.config.*'
- 'tailwind.config.*'