mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-02 03:40:38 +08:00
feat: implement skip branches for github, add ignore title to gitlab
This commit is contained in:
@ -215,7 +215,15 @@ push_commands = [
|
||||
"/describe",
|
||||
"/review --pr_reviewer.num_code_suggestions=0",
|
||||
]
|
||||
# a list of regular expressions to match against the PR title to ignore the PR agent
|
||||
ignore_pr_title = []
|
||||
# a list of regular expressions of target branches to ignore from PR agent when an MR is created
|
||||
ignore_pr_target_branches = []
|
||||
# a list of regular expressions of source branches to ignore from PR agent when an MR is created
|
||||
ignore_pr_source_branches = []
|
||||
# labels to ignore from PR agent when an MR is created
|
||||
ignore_pr_labels = []
|
||||
# MR titles to ignore from PR agent when an MR is created
|
||||
ignore_bot_pr = true
|
||||
|
||||
[gitlab]
|
||||
@ -230,9 +238,14 @@ push_commands = [
|
||||
"/describe",
|
||||
"/review --pr_reviewer.num_code_suggestions=0",
|
||||
]
|
||||
excluded_target_branches = []
|
||||
excluded_source_branches = []
|
||||
excluded_labels = []
|
||||
# a list of regular expressions to match against the PR title to ignore the PR agent
|
||||
ignore_mr_title = []
|
||||
# target branches to ignore from PR agent when an MR is created
|
||||
ignore_mr_target_branches = []
|
||||
# source branches to ignore from PR agent when an MR is created
|
||||
ignore_mr_source_branches = []
|
||||
# labels to ignore from PR agent when an MR is created
|
||||
ignore_mr_labels = []
|
||||
|
||||
[bitbucket_app]
|
||||
pr_commands = [
|
||||
|
Reference in New Issue
Block a user