From 3ba05a7a8e7e8045ca961cc1dc43ce499ddf94d0 Mon Sep 17 00:00:00 2001
From: Zack Koppert
Date: Mon, 2 May 2022 11:06:31 -0700
Subject: [PATCH] * was not matching directories beginning with .
---
config/repolinter-ruleset.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/repolinter-ruleset.json b/config/repolinter-ruleset.json
index 687d105d..c57e1b87 100644
--- a/config/repolinter-ruleset.json
+++ b/config/repolinter-ruleset.json
@@ -49,7 +49,7 @@
"rule": {
"type": "file-existence",
"options": {
- "globsAny": ["CODEOWNERS*", "*/CODEOWNERS*"],
+ "globsAny": ["CODEOWNERS*", "*/CODEOWNERS*", ".github/CODEOWNERS*"],
"nocase": true
}
},