filter events to align with pr-agent's setting

This commit is contained in:
Yohta Kimura
2024-02-09 17:45:29 +09:00
committed by GitHub
parent e4f177908b
commit e01025706a

View File

@ -123,7 +123,14 @@ 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
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 +151,14 @@ jobs:
```yaml ```yaml
on: on:
pull_request: pull_request:
types:
- opened
- reopened
issue_comment: issue_comment:
types:
- created
- edited
jobs: jobs:
pr_agent_job: pr_agent_job: