mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-26 22:35:43 +00:00
Labeler: Test /i regex for case sensitivity (#13115)
### Description Test if regex change will make auto labeling case insensitive
This commit is contained in:
parent
13d1a3c007
commit
440f31668f
1 changed files with 3 additions and 5 deletions
8
.github/labeler.yml
vendored
8
.github/labeler.yml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
# Add/remove 'ep:ACL' label if issue contains the word 'ACL'
|
||||
ep:ACL:
|
||||
- '(ACL)'
|
||||
- '/ACL/i'
|
||||
# Add/remove 'ep:ArmNN' label if issue contains the word 'ArmNN'
|
||||
ep:ArmNN:
|
||||
- '(ArmNN)'
|
||||
|
|
@ -42,13 +42,13 @@ api:CSharp:
|
|||
- '(C#)'
|
||||
# Add/remove 'api' label if issue contains the word 'Python', 'C++', 'C\b', 'Obj-C', or 'WinRT'
|
||||
api:
|
||||
- '(Python|C\+\+|C\b|Obj-C|WinRT)'
|
||||
- '(Python|C\+\+|C\b|Obj-C)'
|
||||
# Add/remove 'platform:jetson' label if issue contains the word 'Jetson' or 'jetson'
|
||||
platform:jetson:
|
||||
- '(Jetson|jetson)'
|
||||
# Add/remove 'platform:windows' label if issue contains the word 'Windows'
|
||||
platform:windows:
|
||||
- '(Windows)'
|
||||
- '(Windows|WinRT)'
|
||||
# Add/remove 'model:transformer' label if issue contains the word 'BERT', 'Bert\b', 'bert\b', 'GPT2', 'gpt2', 'Hugging Face', 'HuggingFace', 'Hugging face', 'Huggingface', 'hugging face', 'huggingface', 'Longformer', 'Long former', 'longformer', 'long former', 'T5', or 't5'
|
||||
model:transformer:
|
||||
- '(BERT|Bert\b|bert\b|GPT2|gpt2|Hugging Face|HuggingFace|Hugging face|Huggingface|hugging face|huggingface|Longformer|Long former|longformer|long former|T5|t5)'
|
||||
|
|
@ -56,5 +56,3 @@ model:transformer:
|
|||
quantization:
|
||||
- '(Is this a quantized model\?\n\nYes|Quantization|quantization|Quantized|(?<!(Is this a ))quantized)'
|
||||
# Add/remove 'build' label if issue contains the word 'ACL', 'ArmNN', 'CUDA', 'DirectML', 'MIGraphX', 'oneDNN', 'OpenVINO', 'Rockchip NPU', 'TensorRT', 'TVM', 'Vitis AI', 'Java', 'Python', 'C++', 'C#', 'C\b', or 'Obj-C'
|
||||
build:
|
||||
- '(ACL|ArmNN|CUDA|DirectML|MIGraphX|oneDNN|OpenVINO|Rockchip NPU|TensorRT|TVM|Vitis AI|Java|Python|C\+\+|C#|C\b|Obj-C)'
|
||||
|
|
|
|||
Loading…
Reference in a new issue