-
Notifications
You must be signed in to change notification settings - Fork 700
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 publish_output_progress config support to AzureDevOps, BitBucket and Gitlab providers #1376
Add publish_output_progress config support to AzureDevOps, BitBucket and Gitlab providers #1376
Conversation
…and Gitlab providers
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨
Previous suggestionsSuggestions up to commit a825aec
|
/help |
PR Agent Walkthrough 🤖Welcome to the PR Agent, an AI-powered tool for automated pull request analysis, feedback, suggestions and more. Here is a list of tools you can use to interact with the PR Agent:
(1) Note that each tool be triggered automatically when a new PR is opened, or called manually by commenting on a PR. (2) Tools marked with [*] require additional parameters to be passed. For example, to invoke the |
if is_temporary and not get_settings().config.publish_output_progress: | ||
get_logger().debug(f"Skipping publish_comment for temporary comment: {pr_comment}") | ||
return None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cool, thanks |
PR Type
enhancement
Description
publish_output_progress
configuration in AzureDevOps, BitBucket, and GitLab providers.publish_output_progress
setting is disabled.Changes walkthrough 📝
azuredevops_provider.py
Add conditional logic for temporary comment publishing
pr_agent/git_providers/azuredevops_provider.py
configuration.
bitbucket_provider.py
Add conditional logic for temporary comment publishing
pr_agent/git_providers/bitbucket_provider.py
configuration.
gitlab_provider.py
Add conditional logic for temporary comment publishing
pr_agent/git_providers/gitlab_provider.py
configuration.