Disable final update message when auto_describe is enabled in GitHub Action Runner

This commit is contained in:
mrT23
2024-06-03 08:15:36 +03:00
parent 962bb1c23d
commit 4f13007267
2 changed files with 1 additions and 1 deletions

View File

@ -99,6 +99,7 @@ async def run_action():
# invoke by default all three tools
if auto_describe is None or is_true(auto_describe):
get_settings().pr_description.final_update_message = False # No final update message when auto_describe is enabled
await PRDescription(pr_url).run()
if auto_review is None or is_true(auto_review):
await PRReviewer(pr_url).run()