Skip to content

Commit 10b95dd

Browse files
committed
Forgot the labeler files lol
1 parent 7c46794 commit 10b95dd

2 files changed

Lines changed: 97 additions & 0 deletions

File tree

.github/labeler.yml

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
C-Actions:
2+
- changed-files:
3+
- any-glob-to-any-file:
4+
- '.github/**'
5+
6+
C-AST:
7+
- changed-files:
8+
- any-glob-to-any-file: 'core/ast/**'
9+
10+
C-Benchmark:
11+
- changed-files:
12+
- any-glob-to-any-file:
13+
- 'benches/**'
14+
- 'core/engine/benches/**'
15+
16+
C-Builtins:
17+
- changed-files:
18+
- any-glob-to-any-file:
19+
- 'core/engine/src/builtins/**'
20+
- 'core/engine/src/object/builtins/**'
21+
- all-globs-to-all-files:
22+
- '!core/engine/src/object/builtins/intl/**'
23+
24+
C-CLI:
25+
- changed-files:
26+
- any-glob-to-any-file:
27+
- 'cli/**'
28+
29+
C-Dependencies:
30+
- changed-files:
31+
- any-glob-to-any-file:
32+
- '**/Cargo.lock'
33+
- '**/Cargo.toml'
34+
35+
C-Documentation:
36+
- changed-files:
37+
- any-glob-to-any-file:
38+
- '**/*.md'
39+
40+
C-FFI:
41+
- changed-files:
42+
- any-glob-to-any-file:
43+
- 'ffi/**'
44+
45+
C-GC:
46+
- changed-files:
47+
- any-glob-to-any-file:
48+
- 'core/gc/**'
49+
50+
C-Intl:
51+
- changed-files:
52+
- any-glob-to-any-file:
53+
- 'core/engine/src/builtins/intl/**'
54+
55+
C-Javascript:
56+
- changed-files:
57+
- any-glob-to-any-file:
58+
- '**/*.js'
59+
60+
C-Parser:
61+
- changed-files:
62+
- any-glob-to-any-file:
63+
- 'core/parser/**'
64+
65+
C-Runtime:
66+
- changed-files:
67+
- any-glob-to-any-file:
68+
- 'core/runtime/**'
69+
70+
C-Tests:
71+
- changed-files:
72+
- any-glob-to-any-file:
73+
- '**/tests/**'
74+
- '**/test**'
75+
76+
C-VM:
77+
- changed-files:
78+
- any-glob-to-any-file:
79+
- 'core/engine/src/bytecompiler/**'
80+
- 'core/engine/src/vm/**'
81+
82+
C-WebAssembly:
83+
- changed-files:
84+
- any-glob-to-any-file:
85+
- 'ffi/wasm/**'

.github/workflows/labeler.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: "Pull Request Labeler"
2+
on:
3+
- pull_request_target
4+
5+
jobs:
6+
labeler:
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/labeler@v6

0 commit comments

Comments
 (0)