diff --git a/pr_agent/servers/github_action_runner.py b/pr_agent/servers/github_action_runner.py index 9d6b6ee7..014268f2 100644 --- a/pr_agent/servers/github_action_runner.py +++ b/pr_agent/servers/github_action_runner.py @@ -109,8 +109,7 @@ async def run_action(): action = event_payload.get("action") # Retrieve the list of actions from the configuration - pr_actions = get_settings().get("GITHUB_ACTION_CONFIG.PR_ACTIONS", - ["opened", "reopened", "ready_for_review", "review_requested"]) + pr_actions = get_settings().get("GITHUB_ACTION_CONFIG.PR_ACTIONS", ["opened", "reopened", "ready_for_review", "review_requested"]) if action in pr_actions: pr_url = event_payload.get("pull_request", {}).get("url") @@ -129,8 +128,7 @@ async def run_action(): # Set the configuration for auto actions get_settings().config.is_auto_command = True # Set the flag to indicate that the command is auto get_settings().pr_description.final_update_message = False # No final update message when auto_describe is enabled - get_logger().info( - f"Running auto actions: auto_describe={auto_describe}, auto_review={auto_review}, auto_improve={auto_improve}") + get_logger().info(f"Running auto actions: auto_describe={auto_describe}, auto_review={auto_review}, auto_improve={auto_improve}") # invoke by default all three tools if auto_describe is None or is_true(auto_describe):