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
10 changes: 7 additions & 3 deletions repomatic/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -1256,9 +1256,13 @@ def skip_binary_build(self) -> bool:
)
return True

if self.event_type == WorkflowEvent.push and self.head_commit_message and any(
self.head_commit_message.startswith(prefix)
for prefix in MANUAL_VERSION_BUMP_COMMIT_PREFIXES
if (
self.event_type == WorkflowEvent.push
and self.head_commit_message
and any(
self.head_commit_message.startswith(prefix)
for prefix in MANUAL_VERSION_BUMP_COMMIT_PREFIXES
)
):
logging.info(
"Head commit is a user-initiated version bump "
Expand Down
Loading