mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
![]() # Aider chat conversation: USER: do we need that under the `push:` too? ASSISTANT: Yes, we should add the `paths-ignore` condition under the `push` event as well to ensure the workflows do not run if only files in the `website/` subtree are changed. Here are the updated *SEARCH/REPLACE* blocks: .github/workflows/windows-tests.yml ```yaml <<<<<<< SEARCH pull_request: ======= pull_request: paths-ignore: - 'website/**' >>>>>>> REPLACE ``` .github/workflows/windows-tests.yml ```yaml <<<<<<< SEARCH push: ======= push: paths-ignore: - 'website/**' >>>>>>> REPLACE ``` .github/workflows/docker-build-test.yml ```yaml <<<<<<< SEARCH pull_request: ======= pull_request: paths-ignore: - 'website/**' >>>>>>> REPLACE ``` .github/workflows/docker-build-test.yml ```yaml <<<<<<< SEARCH push: ======= push: paths-ignore: - 'website/**' >>>>>>> REPLACE ``` .github/workflows/ubuntu-tests.yml ```yaml <<<<<<< SEARCH pull_request: ======= pull_request: paths-ignore: - 'website/**' >>>>>>> REPLACE ``` .github/workflows/ubuntu-tests.yml ```yaml <<<<<<< SEARCH push: ======= push: paths-ignore: - 'website/**' >>>>>>> REPLACE ``` |
||
---|---|---|
.. | ||
docker-build-test.yml | ||
pages.yml | ||
release.yml | ||
ubuntu-tests.yml | ||
windows-tests.yml |