mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
chore: add website file to blame script and improve comments
This commit is contained in:
parent
20b46afbf2
commit
eb72719117
1 changed files with 3 additions and 0 deletions
|
@ -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")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue