From fb0a097daafb0a1cadaf836dd0c4ca84f599e3bf Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Sat, 28 Feb 2026 17:28:25 +0000 Subject: [PATCH 1/3] Expand lists in `is_important_file()` --- master/master.cfg | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/master/master.cfg b/master/master.cfg index d11469af..ed1c7711 100644 --- a/master/master.cfg +++ b/master/master.cfg @@ -184,19 +184,28 @@ cpulock = locks.WorkerLock( def is_important_file(filename): unimportant_prefixes = ( + ".azure-pipelines", + ".devcontainer" ".github/", - ".gitignore", - ".vsts", - "Misc/", + ".well-known", "Doc/", - "Demo/", + "InternalDocs/", + "Misc/", + ".coveragerc", + ".editorconfig", + ".gitattributes", + ".gitignore", + ".mailmap", + "LICENSE" ) unimportant_suffixes = ( + ".txt", ".md", ".rst", ".yml", ".yaml", "README", + "ruff.toml", ) if filename.lstrip("\\/").startswith(unimportant_prefixes): return False From 23cf12f1556c3bbd0bcee7d58076f25ea13132cf Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Sat, 28 Feb 2026 17:30:38 +0000 Subject: [PATCH 2/3] Those are dirs, not files. --- master/master.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/master/master.cfg b/master/master.cfg index ed1c7711..d41fd5e3 100644 --- a/master/master.cfg +++ b/master/master.cfg @@ -184,10 +184,10 @@ cpulock = locks.WorkerLock( def is_important_file(filename): unimportant_prefixes = ( - ".azure-pipelines", - ".devcontainer" + ".azure-pipelines/", + ".devcontainer/" ".github/", - ".well-known", + ".well-known/", "Doc/", "InternalDocs/", "Misc/", From d64a893ee719a74a38142a4c0950ad490ab7b97a Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Sun, 1 Mar 2026 18:57:24 +0000 Subject: [PATCH 3/3] Update master/master.cfg --- master/master.cfg | 1 - 1 file changed, 1 deletion(-) diff --git a/master/master.cfg b/master/master.cfg index d41fd5e3..22e0c50e 100644 --- a/master/master.cfg +++ b/master/master.cfg @@ -199,7 +199,6 @@ def is_important_file(filename): "LICENSE" ) unimportant_suffixes = ( - ".txt", ".md", ".rst", ".yml",