mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 08:14:59 +00:00
feat: add support for GitHub Actions workflow files in filter_important_files
This commit is contained in:
parent
376e632e16
commit
5c71c26ce8
1 changed files with 6 additions and 0 deletions
|
@ -78,6 +78,12 @@ def filter_important_files(file_paths):
|
|||
|
||||
def is_important(file_path):
|
||||
file_name = os.path.basename(file_path)
|
||||
dir_name = os.path.dirname(file_path)
|
||||
|
||||
# Check for GitHub Actions workflow files
|
||||
if dir_name.endswith('.github/workflows') and file_name.endswith('.yml'):
|
||||
return True
|
||||
|
||||
return file_name in important_files or any(
|
||||
file_path.endswith(f"/{name}") for name in important_files
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue