From 3d4ebe544c5945097c61f7317eccf9ea18697536 Mon Sep 17 00:00:00 2001 From: Harald Heckmann Date: Fri, 21 Jul 2023 10:52:36 +0200 Subject: [PATCH] Don't notify codeowners when only weight files or Cargo.toml are changed (#1044) * Don't notify codeowners when weights files or Cargo.toml are changed * Update CODEOWNERS Co-authored-by: Chralt * Update CODEOWNERS Co-authored-by: Chralt --------- Co-authored-by: Chralt --- CODEOWNERS | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CODEOWNERS b/CODEOWNERS index b48c5e381..74c117914 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -5,6 +5,9 @@ /node/ @sea212 /runtime/ @sea212 +# Ignore everything but mod.rs in /runtime/common/src/weights/ +/runtime/common/src/weights/* +/runtime/common/src/weights/mod.rs @sea212 /zrml/authorized/ @Chralt98 /zrml/court/ @Chralt98 /zrml/global-disputes/ @Chralt98 @@ -13,3 +16,7 @@ /zrml/simple-disputes/ @Chralt98 /zrml/styx/ @yornaath /zrml/swaps/ @maltekliemann + +# Skip weight and Cargo.toml files +**/weights.rs +**/Cargo.toml \ No newline at end of file