Hello
I'm using GitHub actions PR-Agent. I would like to configure using .pr_agent.toml file but It did not work.
I think I created it correctly, so PR-Agent(GitHub Actions) doesn't support .pt_agent.toml config file or do We need to use PR-Agent Pro?
※ I have already merged this .pr_agent.toml file into master branch.
file name: this is root directory of my repo.

.pr_agent.toml
# PR-Agent の設定ファイル
[pr_reviewer]
extra_instructions = ""
enable_review_labels_security = false
enable_review_labels_effort = false
require_can_be_split_review = true
enable_auto_approval = true
maximal_review_effort = 1
.github/workflows/pr-agent-on-comment.yml
name: pr-agent-commented
on:
issue_comment:
types: [created, edited]
permissions:
pull-requests: write
issues: write
jobs:
pr_agent:
name: PR Agent
runs-on: ubuntu-latest
if: github.event.sender.type != 'Bot' &&
github.event.issue.state == 'open' &&
github.event.issue.pull_request != null &&
startsWith(github.event.comment.body, '/')
steps:
- name: PR Agent actions step
id: pr-agent
uses: Codium-ai/pr-agent@eff6468651c8acce5ee15ff686e8b772fe386212
env:
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Hello
I'm using GitHub actions PR-Agent. I would like to configure using
.pr_agent.tomlfile but It did not work.I think I created it correctly, so PR-Agent(GitHub Actions) doesn't support
.pt_agent.tomlconfig file or do We need to use PR-Agent Pro?※ I have already merged this .pr_agent.toml file into master branch.
file name: this is root directory of my repo.

.pr_agent.toml.github/workflows/pr-agent-on-comment.yml