diff --git a/pyartcd/pyartcd/pipelines/prepare_release.py b/pyartcd/pyartcd/pipelines/prepare_release.py index 7f8f845d0..9ad04c8ee 100644 --- a/pyartcd/pyartcd/pipelines/prepare_release.py +++ b/pyartcd/pyartcd/pipelines/prepare_release.py @@ -249,7 +249,7 @@ async def run(self): if batch: # Update batch with advisories - advisories_for_main_batch = [ad for ad_type, ad in advisories.items() if ad_type != 'advance' and ad > 0] + advisories_for_main_batch = [ad for ad_type, ad in advisories.items() if ad > 0 and ad_type not in {'advance', 'microshift'}] await self._ensure_batch_advisories(self._errata_api, batch, advisories_for_main_batch, self.dry_run) if "advance" in advisories.keys():