aider/.github/workflows
Paul Gauthier bc6e958d7e aider: Remove push and pull_request triggers, add workflow_dispatch trigger to make the GitHub action only run when manually initiated.
# 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.
2023-07-04 14:49:16 -07:00
..
python-tests.yml restore ubuntu 2023-07-04 14:41:40 -07:00
release.yml Upgrade to new actions versions 2023-06-17 07:12:05 -07:00
windows-tests.yml aider: Remove push and pull_request triggers, add workflow_dispatch trigger to make the GitHub action only run when manually initiated. 2023-07-04 14:49:16 -07:00