From cfce76e2a8917a76325b729e66c4d4da3fb2d218 Mon Sep 17 00:00:00 2001 From: Marc Foley Date: Thu, 14 Mar 2024 13:37:30 +0000 Subject: [PATCH] .ci/run: skip article directories --- .ci/run.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/run.py b/.ci/run.py index e0e15b3f22..978659334d 100644 --- a/.ci/run.py +++ b/.ci/run.py @@ -52,6 +52,9 @@ def directory_check_types(branch="origin/main"): if path not in ("to_sandbox.txt", "to_production.txt") else path ) + # skip article directories. These should be checked on github + if os.path.basename(dirpath) == "article": + continue dir_tokens = directories_to_check[dirpath] if path.startswith("catalog"): -- 2.47.2