Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/docs/usage-guide/automations_and_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,20 @@ publish_labels = false

to prevent Qodo Merge from publishing labels when running the `describe` tool.

#### Enable using commands in PR

You can configure your GitHub Actions workflow to trigger on `issue_comment` [events](https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#issue_comment) (`created` and `edited`).

Example GitHub Actions workflow configuration:

```yaml
on:
issue_comment:
types: [created, edited]
```

When this is configured, Qodo merge can be invoked by commenting on the PR.

#### Quick Reference: Model Configuration in GitHub Actions

For detailed step-by-step examples of configuring different models (Gemini, Claude, Azure OpenAI, etc.) in GitHub Actions, see the [Configuration Examples](../installation/github.md#configuration-examples) section in the installation guide.
Expand Down