Skip to content
Open
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 runbot/models/batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def _start_builds(self):
common_repo = (trigger.repo_ids & bundle_repos)
if self.build_all and not common_repo:
common_repo = (trigger.dependency_ids & bundle_repos)
if (common_repo or bundle.build_all or bundle.sticky) and enable_on_bundle:
if (common_repo or bundle.build_all or bundle.sticky or trigger.params_id.build_ids) and enable_on_bundle:
should_start_triggers_ids.add(trigger.id)

disabled_triggers = self.bundle_id.all_trigger_custom_ids.filtered(lambda tc: tc.start_mode == 'disabled').trigger_id
Expand Down