Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion webhook_server/libs/pull_request_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ async def process_pull_request_webhook_data(self, pull_request: PullRequest) ->

if hook_action == "edited":
await self.set_wip_label_based_on_title(pull_request=pull_request)
if self.hook_data["changes"].get("title"):
if self.github_webhook.conventional_title and self.hook_data["changes"].get("title"):
self.logger.info(f"{self.log_prefix} PR title changed, running conventional title check")
await self.runner_handler.run_conventional_title_check(pull_request=pull_request)

Expand Down