From b82746d15d6466a911217ac2edd458f8e41ed0f0 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Fri, 12 Jan 2024 21:38:30 -0500 Subject: [PATCH] Add a triagebot.toml file This allows non-maintainers to set labels with `@rustbot`. --- triagebot.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 triagebot.toml diff --git a/triagebot.toml b/triagebot.toml new file mode 100644 index 0000000000..c196fb3d4d --- /dev/null +++ b/triagebot.toml @@ -0,0 +1,28 @@ +[relabel] +allow-unauthenticated = [ + "A-*", + "C-*", + "E-*", + "I-*", + "S-*", + "bug", + "dependencies", + "enhancement", + "good first issue", + "hacktoberfest", + "help wanted", + "invalid", + "meta", + "msvc", + "next-release", + "question", + "This Week In Servo (TWiS)", + "windows", +] + +[autolabel."A-C++"] +trigger_files = [ + "**/*.cpp", + "**/*.cc", + "**/*.hpp", +] \ No newline at end of file