Configuration File
The different tools and sub-tools used by PR-Agent are adjustable via a Git configuration file. There are four main ways to set persistent configurations:
- Wiki configuration page
- Local configuration file
- Global configuration file
- External configuration URL (CLI flag)
In terms of precedence, wiki configurations will override local configurations, local configurations will override global configurations, and global configurations will override an external configuration URL.
For a list of all possible configurations, see the configuration options page.
In addition to general configuration options, each tool has its own configurations. For example, the review tool will use parameters from the pr_reviewer section in the configuration file.
Tip1: Edit only what you need
Your configuration file should be minimal, and edit only the relevant values. Don't copy the entire configuration options, since it can lead to legacy problems when something changes.
Tip2: Show relevant configurations
If you set config.output_relevant_configurations to True, each tool will also output in a collapsible section its relevant configurations. This can be useful for debugging, or getting to know the configurations better.
Wiki configuration file¶
Platforms supported: GitHub, GitLab, Bitbucket
With PR-Agent, you can set configurations by creating a page called .pr_agent.toml in the wiki of the repo.
The advantage of this method is that it allows to set configurations without needing to commit new content to the repo - just edit the wiki page and save.
Click here to see a short instructional video. We recommend surrounding the configuration content with triple-quotes (or ```toml), to allow better presentation when displayed in the wiki as markdown. An example content:
PR-Agent will know to remove the surrounding quotes when reading the configuration content.
Local configuration file¶
Platforms supported: GitHub, GitLab, Bitbucket, Azure DevOps
By uploading a local .pr_agent.toml file to the root of the repo's default branch, you can edit and customize any configuration parameter. Note that you need to upload or update .pr_agent.toml before using the PR Agent tools (either at PR creation or via manual trigger) for the configuration to take effect.
For example, if you set in .pr_agent.toml:
Then you can give a list of extra instructions to the review tool.
Loading the local configuration from a non-default branch¶
Platforms supported: GitHub
By default, the local .pr_agent.toml is read from the repo's default branch. When running PR-Agent from the CLI (or any wrapper that exposes its arguments), you can point it at a different branch — for example to test configuration changes from a feature branch before merging them:
Equivalently, set the PR_AGENT_CONFIG_BRANCH environment variable. The CLI flag takes precedence over the environment variable, and whitespace-only values are ignored.
If .pr_agent.toml cannot be loaded from the requested branch (e.g. the branch or file does not exist), PR-Agent logs a warning and falls back to the default branch.
Security: treat the config branch as privileged
By default, configuration is read from the default branch, so only users who can merge to it can change how PR-Agent behaves. --config-branch / PR_AGENT_CONFIG_BRANCH move that trust boundary to whatever branch you name.
Never set the config branch from untrusted or PR-derived input (e.g. --config-branch=$GITHUB_HEAD_REF / ${{ github.head_ref }} in CI). Doing so lets anyone who can push a branch to the repository supply their own .pr_agent.toml and control the review — for example pointing model/the API base at an attacker endpoint to exfiltrate the diff, injecting extra_instructions, or enabling auto-approval of their own PR. Always pin the config branch to a fixed, maintainer-controlled branch.
GitHub only
Branch selection is currently implemented for GitHub. On all other platforms the --config-branch flag and PR_AGENT_CONFIG_BRANCH variable are ignored, and the local .pr_agent.toml is always read from the default branch.
Global configuration file¶
Platforms supported: GitHub, GitLab (cloud), Bitbucket (cloud)
Create a repository named pr-agent-settings at the organization level; its .pr_agent.toml (read from that repo's default branch) is used as a global configuration for every repository under the same organization:
- GitHub:
<organization>/pr-agent-settings - GitLab (cloud):
<top-level-group>/pr-agent-settings(GitLab.com only; not applied on self-hosted GitLab) - Bitbucket (cloud):
<workspace>/pr-agent-settings
Parameters from a local .pr_agent.toml file, in a specific repo, will override the global configuration parameters (the global file is merged beneath the repo-local one).
For GitHub Enterprise Server, use the same organization-level repository on your GHES host.
The app installation or token used by PR-Agent must have read access to both the pull request repository and the pr-agent-settings repository; otherwise, PR-Agent will skip the global configuration and continue with repository-local settings.
Caching
In long-running deployments (the GitHub App / webhook server), the fetched global settings are cached in-process for up to 15 minutes to avoid re-fetching on every webhook event, so a change to pr-agent-settings may take up to that long to take effect there. CLI and CI (GitHub Action) runs are short-lived processes, so they fetch the global settings once per invocation and always see the latest version.
Loading the global settings file is controlled by the use_global_settings_file flag, which is enabled by default. To opt out and rely only on each repo's local .pr_agent.toml, set:
For example, in the GitHub organization qodo-ai:
-
The file
https://github.com/the-pr-agent/pr-agent-settings/.pr_agent.tomlserves as a global configuration file for all the repos in the GitHub organizationqodo-ai. -
The repo
https://github.com/the-pr-agent/pr-agentinherits the global configuration file frompr-agent-settings.
Project/Group level configuration file¶
Platforms supported: GitLab, Bitbucket Data Center
Create a repository named pr-agent-settings within a specific project (Bitbucket) or a group/subgroup (Gitlab).
The configuration file in this repository will apply to all repositories directly under the same project/group/subgroup.
Note
For Gitlab, in case of a repository nested in several sub groups, the lookup for a pr-agent-settings repo will be only on one level above such repository.
Organization level configuration file¶
Relevant platforms: Bitbucket Data Center
Create a dedicated project to hold a global configuration file that affects all repositories across all projects in your organization.
Setting up organization-level global configuration:
- Create a new project with both the name and key: PR_AGENT_SETTINGS.
- Inside the PR_AGENT_SETTINGS project, create a repository named pr-agent-settings.
- In this repository, add a
.pr_agent.tomlconfiguration file—structured similarly to the global configuration file described above. - Optionally, you can add organizational-level global best practices.
Repositories across your entire Bitbucket organization will inherit the configuration from this file.
Note
If both organization-level and project-level global settings are defined, the project-level settings will take precedence over the organization-level configuration. Additionally, parameters from a repository’s local .pr_agent.toml file will always override both global settings.
External configuration URL¶
Platforms supported: GitHub, GitLab, Bitbucket, Azure DevOps
When running PR-Agent from the CLI (or any wrapper that exposes its arguments), you can merge an additional .pr_agent.toml from any URL or local path before the repo-local and global configurations are applied. This is useful when:
- You want a single shared configuration that applies to repositories nested deep inside subgroups, where the project/group-level lookup only walks one level up.
- The shared configuration is published outside of a Git host (a static site, an internal artifact server, an S3 bucket, etc.).
- You want CI-time control over which defaults are layered in, without committing a file to the target repository.
Usage¶
Pass --extra_config_url to the CLI, or set the PR_AGENT_EXTRA_CONFIG_URL environment variable:
python -m pr_agent.cli \
--pr_url=<MR/PR URL> \
--extra_config_url=https://config.example.com/pr-agent/shared.toml \
review
Accepted values:
https://…orhttp://…— fetched at runtimefile:///path/to/shared.toml— read from the local filesystem- A bare filesystem path — same as
file://
Authentication for private endpoints¶
For private endpoints (e.g. a GitLab API URL pointing at a private pr-agent-settings file), provide a single header via the PR_AGENT_EXTRA_CONFIG_AUTH_HEADER environment variable, formatted as <HeaderName>: <value>:
# GitLab Personal Access Token
export PR_AGENT_EXTRA_CONFIG_AUTH_HEADER="PRIVATE-TOKEN: <your-personal-access-token>"
# GitLab CI job token
export PR_AGENT_EXTRA_CONFIG_AUTH_HEADER="JOB-TOKEN: $CI_JOB_TOKEN"
# Generic bearer token
export PR_AGENT_EXTRA_CONFIG_AUTH_HEADER="Authorization: Bearer <your-token>"
Precedence¶
External-URL settings are applied first, so every other layer overrides them:
built-in defaults
< --extra_config_url
< global pr-agent-settings
< local .pr_agent.toml (repo default branch)
< wiki .pr_agent.toml
< environment variables (PR_AGENT__SECTION__KEY)
This means an external URL acts as an organization-wide default that any team can still override with their own pr-agent-settings or repo-local .pr_agent.toml.
Security and limits¶
The external file is loaded through the same secure loader as the repo-local .pr_agent.toml: includes, preloads, custom loaders, and other directives that could execute code or read arbitrary files are rejected. The fetcher additionally:
- Limits the response size to 1 MB
- Uses a 10-second request timeout
- Only accepts
http,https,fileschemes (or a bare local path)
If the fetch fails, the request is logged and PR-Agent continues with the remaining configuration layers.
