-
Notifications
You must be signed in to change notification settings - Fork 590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add 'final_update_message' option to control publishing of update messages #744
Conversation
…sage in persistent comments
PR Review(Review updated until commit d77db93)
Code feedback:
✨ Review tool usage guide:Overview:
With a configuration file, use the following template:
See the review usage page for a comprehensive guide on using this tool. |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
With a configuration file, use the following template:
See the improve usage page for a more comprehensive guide on using this tool. |
…sage in persistent comments
/improve |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
With a configuration file, use the following template:
See the improve usage page for a more comprehensive guide on using this tool. |
/review |
Persistent review updated to latest commit d77db93 |
PR Code SuggestionsNo code suggestions found for PR. |
1 similar comment
PR Code SuggestionsNo code suggestions found for PR. |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
With a configuration file, use the following template:
See the improve usage page for a more comprehensive guide on using this tool. |
Preparing review... |
Preparing PR description... |
Preparing review... |
3 similar comments
Preparing review... |
Preparing review... |
Preparing review... |
Preparing review... |
2 similar comments
Preparing review... |
Preparing review... |
Type
enhancement
Description
final_update_message
parameter across Git providers (Bitbucket, GitHub, GitLab) to control the publishing of final update messages in persistent comments.publish_persistent_comment
method ingit_provider.py
to include thefinal_update_message
parameter.final_update_message
setting into the PR reviewer tool, allowing it to be configured via settings.final_update_message
parameter.Changes walkthrough
bitbucket_provider.py
Add Final Update Message Control to Bitbucket Provider
pr_agent/git_providers/bitbucket_provider.py
final_update_message
parameter topublish_persistent_comment
method to control publishing of update messages.
final_update_message
flag.github_provider.py
Implement Final Update Message Option in GitHub Provider
pr_agent/git_providers/github_provider.py
final_update_message
parameter inpublish_persistent_comment
to manage final update messages.final_update_message
flag.
gitlab_provider.py
Add Final Update Message Feature to GitLab Provider
pr_agent/git_providers/gitlab_provider.py
final_update_message
topublish_persistent_comment
for final message control.final_update_message
parameter.git_provider.py
Abstract Method Update for Final Update Message
pr_agent/git_providers/git_provider.py
final_update_message
parameter to abstract methodpublish_persistent_comment
.pr_reviewer.py
Integrate Final Update Message Setting in Reviewer Tool
pr_agent/tools/pr_reviewer.py
final_update_message
setting into the review publishingprocess.
Usage.md
Documentation Update for Final Update Message Parameter
Usage.md
final_update_message
parameter inexample commands.
REVIEW.md
Document Final Update Message Configuration in Review Settings
docs/REVIEW.md
final_update_message
configuration option in the reviewtool settings.
configuration.toml
Add Final Update Message Configuration Option
pr_agent/settings/configuration.toml
final_update_message
configuration option with a default valueof true.