You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This means that when new code is pushed to the PR, the PR-Agent will run the `describe` and incremental `review` tools.
219
-
For the `describe` tool, the `add_original_user_description` and `keep_original_user_title` parameters will be set to true.
220
-
For the `review` tool, it will run in incremental mode, and the `remove_previous_review_comment` parameter will be set to true.
221
-
222
-
Much like the configurations for `pr_commands`, you can override the default tool parameters by uploading a local configuration file to the root of your repo.
218
+
This means that when new code is pushed to the PR, the PR-Agent will run the `describe` and `review` tools, with the specified parameters.
223
219
224
220
### Working with GitHub Action
225
221
`GitHub Action` is a different way to trigger PR-Agent tools, and uses a different configuration mechanism than `GitHub App`.
Copy file name to clipboardExpand all lines: docs/REVIEW.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,6 @@ For example, if `minimal_commits_for_incremental_review=2` and `minimal_minutes_
77
77
When `require_all_thresholds_for_incremental_review=true` the incremental review __will not__ run, because only 1 out of 2 conditions were met (we have enough commits but the last review is too recent),
78
78
but when `require_all_thresholds_for_incremental_review=false` the incremental review __will__ run, because one condition is enough (we have 3 commits which is more than the configured 2).
79
79
Default is false - the tool will run as long as at least once conditions is met.
80
-
-`remove_previous_review_comment`: if set to true, the tool will remove the previous review comment before adding a new one. Default is false.
0 commit comments