From a8edb36fb4363e383cdfb2299b10e92ebcd89fb7 Mon Sep 17 00:00:00 2001 From: "Felix S. Klock II" Date: Wed, 12 Jul 2023 22:48:48 -0400 Subject: [PATCH] config file to control permission for new rustc-apfloat crate that eddyb and wesley are providing. --- repos/rust-lang/rustc-apfloat.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 repos/rust-lang/rustc-apfloat.toml diff --git a/repos/rust-lang/rustc-apfloat.toml b/repos/rust-lang/rustc-apfloat.toml new file mode 100644 index 000000000..152967a77 --- /dev/null +++ b/repos/rust-lang/rustc-apfloat.toml @@ -0,0 +1,19 @@ +org = 'rust-lang' +name = 'rustc-apfloat' +description = 'Rust port of C++ llvm::APFloat library' + +# For the initial setup, we are not including bors in our list of bots, because +# we do not have any Continuous Integration setup yet for the rustc-apfloat +# crate. We will tackle that later. +bots = ["rustbot", "rfcbot"] + +# For the initial setup, we are just giving {eddyb, wesleywiser, pnkfelix} +# maintainer permissions. Later we will figure out what permissions to give to +# the rest of T-compiler, compiler-contributors, et cetera. +[access.individuals] +eddyb = 'maintain' +pnkfelix = 'maintain' +wesleywiser = 'maintain' + +# Likewise, eventually we may want a branch protections section, but we will +# tackle that later.