mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-21 03:54:59 +00:00
![]() # Aider chat conversation: USER: these workflows currently run on any changes to the main branch; they don't need to run if only files in the wubsite/ subtree are changed ASSISTANT: To ensure the workflows do not run if only files in the `website/` subtree are changed, we can add a `paths-ignore` condition to each workflow. Here are the changes: .github/workflows/windows-tests.yml ```yaml <<<<<<< SEARCH pull_request: ======= pull_request: paths-ignore: - 'website/**' >>>>>>> REPLACE ``` .github/workflows/docker-build-test.yml ```yaml <<<<<<< SEARCH pull_request: ======= pull_request: paths-ignore: - 'website/**' >>>>>>> REPLACE ``` .github/workflows/ubuntu-tests.yml ```yaml <<<<<<< SEARCH pull_request: ======= pull_request: paths-ignore: - 'website/**' >>>>>>> REPLACE ``` |
||
---|---|---|
.. | ||
ISSUE_TEMPLATE | ||
workflows |