diff --git a/scripts/blame.py b/scripts/blame.py index f14342cbe..b07114276 100755 --- a/scripts/blame.py +++ b/scripts/blame.py @@ -12,6 +12,7 @@ import semver import yaml from tqdm import tqdm +# Put the list of inidividual URLs here: AI! def blame(start_tag, end_tag=None): commits = get_all_commit_hashes_between_tags(start_tag, end_tag) @@ -26,7 +27,9 @@ def blame(start_tag, end_tag=None): for f in files if f.endswith((".js", ".py", ".scm", ".sh", "Dockerfile", "Gemfile")) or (f.startswith(".github/workflows/") and f.endswith(".yml")) + # AI: refactor these into a list... or f == "aider/website/share/index.md" + or f == "aider/website/_includes/head_custom.html" or f == "aider/website/docs/leaderboards/index.md" ] files = [f for f in files if not f.endswith("prompts.py")]