[llvm] Add compiler-rt:* to .github/new-prs-labeler.yml [NFC] (PR #79872)

via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 29 09:50:18 PST 2024


https://github.com/piggynl created https://github.com/llvm/llvm-project/pull/79872

After this change, all current `compiler-rt:*` labels on GitHub are covered.


>From d890b47275980954db7d01a7f264a3101d1d7603 Mon Sep 17 00:00:00 2001
From: ZHU Zijia <piggynl at outlook.com>
Date: Tue, 30 Jan 2024 01:40:35 +0800
Subject: [PATCH] Add compiler-rt:* to .github/new-prs-labeler.yml [NFC]

After this change, all current compiler-rt:* labels on GitHub are
covered.
---
 .github/new-prs-labeler.yml | 40 +++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/.github/new-prs-labeler.yml b/.github/new-prs-labeler.yml
index b42bcb1887fb69..3803959fb24212 100644
--- a/.github/new-prs-labeler.yml
+++ b/.github/new-prs-labeler.yml
@@ -75,6 +75,36 @@ mc:
 clang:driver:
   - clang/*/Driver/**
 
+compiler-rt:asan:
+  - compiler-rt/lib/asan/**
+  - compiler-rt/test/asan/**
+  - compiler-rt/lib/asan_abi/**
+  - compiler-rt/test/asan_abi/**
+
+compiler-rt:builtins:
+  - compiler-rt/lib/builtins/**
+  - compiler-rt/test/builtins/**
+
+compiler-rt:cfi:
+  - compiler-rt/lib/cfi/**
+  - compiler-rt/test/cfi/**
+
+compiler-rt:fuzzer:
+  - compiler-rt/lib/fuzzer/**
+  - compiler-rt/test/fuzzer/**
+
+compiler-rt:hwasan:
+  - compiler-rt/lib/hwsan/**
+  - compiler-rt/test/hwsan/**
+
+compiler-rt:lsan:
+  - compiler-rt/lib/lsan/**
+  - compiler-rt/test/lsan/**
+
+compiler-rt:msan:
+  - compiler-rt/lib/msan/**
+  - compiler-rt/test/msan/**
+
 compiler-rt:sanitizer:
   - llvm/lib/Transforms/Instrumentation/*Sanitizer*
   - compiler-rt/lib/interception/**
@@ -89,6 +119,16 @@ compiler-rt:scudo:
   - compiler-rt/lib/scudo/**
   - compiler-rt/test/scudo/**
 
+compiler-rt:tsan:
+  - compiler-rt/lib/tsan/**
+  - compiler-rt/test/tsan/**
+
+compiler-rt:ubsan:
+  - compiler-rt/lib/ubsan/**
+  - compiler-rt/test/ubsan/**
+  - compiler-rt/lib/ubsan_minimal/**
+  - compiler-rt/test/ubsan_minimal/**
+
 xray:
   - llvm/tools/llvm-xray/**
   - compiler-rt/*/xray/**



More information about the llvm-commits mailing list