From e3b4d87b6da70a5627a1279a6a47aa197ca7fcec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bombo?= Date: Tue, 5 Aug 2025 16:25:05 -0500 Subject: [PATCH] ci: static-checks: add SECURITY.md to exclude list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adds SECURITY.md to the list of GH-native files that should be excluded by the reference checker. Today this is useful for downstreams who already have a SECURITY.md file for compliance reasons. When Kata onboards that file, this commit will also be required. Signed-off-by: Aurélien Bombo --- tests/static-checks.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/static-checks.sh b/tests/static-checks.sh index f4bb4077fa..35f74198d5 100755 --- a/tests/static-checks.sh +++ b/tests/static-checks.sh @@ -780,6 +780,7 @@ static_check_docs() exclude_doc_regexs+=(^CODE_OF_CONDUCT\.md$) exclude_doc_regexs+=(^CONTRIBUTING\.md$) + exclude_doc_regexs+=(^SECURITY\.md$) # Magic github template files exclude_doc_regexs+=(^\.github/.*\.md$)