Skip to content

Commit 9daa533

Browse files
Revert "updated labeler.yml to v5 syntax" and use v4
This reverts commit 22b23e7.
1 parent 22b23e7 commit 9daa533

File tree

2 files changed

+68
-93
lines changed

2 files changed

+68
-93
lines changed

.github/labeler.yml

Lines changed: 67 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -6,126 +6,101 @@
66

77
# Tools
88
ABC:
9-
- changed-files:
10-
- any-glob-to-any-file: abc_with_bb_support/*
11-
- any-glob-to-any-file: abc_with_bb_support/**/*
12-
- any-glob-to-any-file: abc/*
13-
- any-glob-to-any-file: abc/**/*
9+
- abc_with_bb_support/*
10+
- abc_with_bb_support/**/*
11+
- abc/*
12+
- abc/**/*
1413
ACE2:
15-
- changed-files:
16-
- any-glob-to-any-file: ace2/*
17-
- any-glob-to-any-file: ace2/**/*
14+
- ace2/*
15+
- ace2/**/*
1816
blifexplorer:
19-
- changed-files:
20-
- any-glob-to-any-file: blifexplorer/*
21-
- any-glob-to-any-file: blifexplorer/**/*
17+
- blifexplorer/*
18+
- blifexplorer/**/*
2219
Odin:
23-
- changed-files:
24-
- any-glob-to-any-file: odin_ii/*
25-
- any-glob-to-any-file: odin_ii/**/*
26-
- any-glob-to-any-file: odin2_helper/*
27-
- any-glob-to-any-file: odin2_helper/**/*
20+
- odin_ii/*
21+
- odin_ii/**/*
22+
- odin2_helper/*
23+
- odin2_helper/**/*
2824
Parmys:
29-
- changed-files:
30-
- any-glob-to-any-file: parmys/*
31-
- any-glob-to-any-file: parmys/**/*
32-
- any-glob-to-any-file: yosys/*
33-
- any-glob-to-any-file: yosys/**/*
25+
- parmys/*
26+
- parmys/**/*
27+
- yosys/*
28+
- yosys/**/*
3429
VPR:
35-
- changed-files:
36-
- any-glob-to-any-file: vpr/*
37-
- any-glob-to-any-file: vpr/**/*
30+
- vpr/*
31+
- vpr/**/*
3832

3933
# Libraries
4034
libarchfpga:
41-
- changed-files:
42-
- any-glob-to-any-file: libs/libarchfpga/*
43-
- any-glob-to-any-file: libs/libarchfpga/**/*
35+
- libs/libarchfpga/*
36+
- libs/libarchfpga/**/*
4437
libeasygl:
45-
- changed-files:
46-
- any-glob-to-any-file: libs/libeasygl/*
47-
- any-glob-to-any-file: libs/libeasygl/**/*
38+
- libs/libeasygl/*
39+
- libs/libeasygl/**/*
4840
liblog:
49-
- changed-files:
50-
- any-glob-to-any-file: libs/liblog/*
51-
- any-glob-to-any-file: libs/liblog/**/*
41+
- libs/liblog/*
42+
- libs/liblog/**/*
5243
libpugiutil:
53-
- changed-files:
54-
- any-glob-to-any-file: libs/libpugiutil/*
55-
- any-glob-to-any-file: libs/libpugiutil/**/*
44+
- libs/libpugiutil/*
45+
- libs/libpugiutil/**/*
5646
libvtrutil:
57-
- changed-files:
58-
- any-glob-to-any-file: libs/libvtrutil/*
59-
- any-glob-to-any-file: libs/libvtrutil/**/*
47+
- libs/libvtrutil/*
48+
- libs/libvtrutil/**/*
6049
external_libs:
61-
- changed-files:
62-
- any-glob-to-any-file: libs/EXTERNAL/*
63-
- any-glob-to-any-file: libs/EXTERNAL/**/*
50+
- libs/EXTERNAL/*
51+
- libs/EXTERNAL/**/*
6452

6553
# General areas
6654
docs:
67-
- changed-files:
68-
- any-glob-to-any-file: doc/*
69-
- any-glob-to-any-file: doc/**/*
70-
- any-glob-to-any-file: "*README*"
71-
- any-glob-to-any-file: "*.md"
72-
- any-glob-to-any-file: "*.rst"
55+
- docs/*
56+
- docs/**/*
57+
- "*README*"
58+
- "*.md"
59+
- tutorial
60+
- "*.rst"
7361
infra:
74-
- changed-files:
75-
- any-glob-to-any-file: .github/*
76-
- any-glob-to-any-file: .github/**/*
77-
- any-glob-to-any-file: Dockerfile
78-
- any-glob-to-any-file: "*docker*"
62+
- .github/*
63+
- .github/**/*
64+
- Dockerfile
65+
- "*docker*"
7966
build:
80-
- changed-files:
81-
- any-glob-to-any-file: Makefile
82-
- any-glob-to-any-file: "*.make"
83-
- any-glob-to-any-file: CMakeLists.txt
84-
- any-glob-to-any-file: cmake/*
85-
- any-glob-to-any-file: cmake/**/*
67+
- Makefile
68+
- "*.make"
69+
- CMakeLists.txt
70+
- cmake
8671
tests:
87-
- changed-files:
88-
- any-glob-to-any-file: "*_test.py"
89-
- any-glob-to-any-file: "*test*"
90-
- any-glob-to-any-file: "*TESTS*"
72+
- "*_test.py"
73+
- "*test*"
74+
- "*TESTS*"
9175
scripts:
92-
- changed-files:
93-
- any-glob-to-any-file: scripts
94-
- any-glob-to-any-file: "*.pl"
95-
- any-glob-to-any-file: "*.py"
96-
- any-glob-to-any-file: "*.sh"
76+
- scripts
77+
- "*.pl"
78+
- "*.py"
79+
- "*.sh"
9780
VTR Flow:
98-
- changed-files:
99-
- any-glob-to-any-file: vtr_flow
81+
- vtr_flow
10082

10183
# Tag pull requests with the languages used to make it easy to see what is
10284
# being used.
10385
lang-hdl:
104-
- changed-files:
105-
- any-glob-to-any-file: "**/*.v"
106-
- any-glob-to-any-file: "**/*.sv"
86+
- "*.v"
87+
- "*.sv"
10788
lang-cpp:
108-
- changed-files:
109-
- any-glob-to-any-file: "**/*.c*"
110-
- any-glob-to-any-file: "**/*.h"
89+
- "*.c*"
90+
- "*.h"
11191
lang-perl:
112-
- changed-files:
113-
- any-glob-to-any-file: "**/*.pl"
114-
- any-glob-to-any-file: "**/*perl*"
92+
- "*.pl"
93+
- "*perl*"
11594
lang-python:
116-
- changed-files:
117-
- any-glob-to-any-file: "**/*.py"
95+
- "*.py"
11896
lang-shell:
119-
- changed-files:
120-
- any-glob-to-any-file: "**/*.sh"
97+
- "*.sh"
12198
lang-netlist:
122-
- changed-files:
123-
- any-glob-to-any-file: "**/*.blif"
124-
- any-glob-to-any-file: "**/*.eblif"
125-
- any-glob-to-any-file: "**/*.edif"
126-
- any-glob-to-any-file: "**/*.vqm"
99+
- "*.blif"
100+
- "*.eblif"
101+
- "*.edif"
102+
- "*.vqm"
127103
lang-make:
128-
- changed-files:
129-
- any-glob-to-any-file: "**/*.make"
130-
- any-glob-to-any-file: "**/*Makefile"
131-
- any-glob-to-any-file: "**/CMakeLists.txt"
104+
- "*.make"
105+
- Makefile
106+
- CMakeLists.txt

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ jobs:
66
triage:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/labeler@main
9+
- uses: actions/labeler@v4
1010
with:
1111
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)