mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-15 12:25:18 +00:00
Merge pull request #649 from rajyan/patch-2
filter events to align with pr-agent's setting
This commit is contained in:
commit
d0958022a0
1 changed files with 18 additions and 0 deletions
18
INSTALL.md
18
INSTALL.md
|
|
@ -123,7 +123,16 @@ You can use our pre-built Github Action Docker image to run PR-Agent as a Github
|
||||||
```yaml
|
```yaml
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- reopened
|
||||||
|
- ready_for_review
|
||||||
|
- review_requested
|
||||||
|
|
||||||
issue_comment:
|
issue_comment:
|
||||||
|
types:
|
||||||
|
- created
|
||||||
|
- edited
|
||||||
jobs:
|
jobs:
|
||||||
pr_agent_job:
|
pr_agent_job:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -144,7 +153,16 @@ jobs:
|
||||||
```yaml
|
```yaml
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- reopened
|
||||||
|
- ready_for_review
|
||||||
|
- review_requested
|
||||||
|
|
||||||
issue_comment:
|
issue_comment:
|
||||||
|
types:
|
||||||
|
- created
|
||||||
|
- edited
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pr_agent_job:
|
pr_agent_job:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue