mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-02 10:45:00 +00:00
![]() # Context: USER: can you stop this action from running on pushes/merges and make it so that it only runs when manually initiated? ASSISTANT: Sure, to make the GitHub action only run when manually initiated, we need to modify the `.github/workflows/windows-tests.yml` file. We will remove the `push` and `pull_request` triggers and add a `workflow_dispatch` trigger. Here is the change: ```yaml .github/workflows/windows-tests.yml <<<<<<< ORIGINAL name: Windows Tests on: push: branches: - main pull_request: branches: - main ======= name: Windows Tests on: workflow_dispatch: >>>>>>> UPDATED ``` This change will make the workflow only run when manually triggered from the GitHub Actions UI. |
||
---|---|---|
.. | ||
python-tests.yml | ||
release.yml | ||
windows-tests.yml |