fix(ISV-7101): Make add-bundle-to-fbc run as last task before finally block#931
Merged
JakubDurkac merged 1 commit intomainfrom Apr 21, 2026
Merged
fix(ISV-7101): Make add-bundle-to-fbc run as last task before finally block#931JakubDurkac merged 1 commit intomainfrom
JakubDurkac merged 1 commit intomainfrom
Conversation
Review Summary by QodoReorder add-bundle-to-fbc task to run after publish-to-index
WalkthroughsDescription• Reorders add-bundle-to-fbc task to run after publish-to-index • Prevents duplicate PR creation when parallel tasks fail and retry • Ensures bundle is added to FBC only after index publishing completes Diagramflowchart LR
A["publish-pyxis-data"] --> B["get-supported-versions"]
B --> C["build-fragment-images"]
C --> D["acquire-lease"]
D --> E["add-bundle-to-index"]
D --> F["build-fbc-index-images"]
E --> G["sign-index-image"]
F --> G
G --> H["publish-to-index"]
H --> I["add-bundle-to-fbc"]
I --> J["finally block"]
File Changes1. ansible/roles/operator-pipeline/templates/openshift/pipelines/operator-release-pipeline.yml
|
Code Review by Qodo🐞 Bugs (0) 📘 Rule violations (0) 📎 Requirement gaps (0)
Great, no issues found!Qodo reviewed your code and found no material issues that require reviewⓘ The new review experience is currently in Beta. Learn more |
bclindner
approved these changes
Apr 16, 2026
Contributor
bclindner
left a comment
There was a problem hiding this comment.
pretty easy review, LGTM, thanks for the explainer
RichardPlesnik
approved these changes
Apr 21, 2026
bclindner
approved these changes
Apr 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Made add-bundle-to-fbc not run in parallel with a group of tasks, but rather as last task in the group before finally block. This is to ensure that duplicate PRs are not created when a task from the parallel group fails -> need to retry the pipeline -> running add-bundle-to-fbc multiple times -> multiple duplicate PRs.
Before:
After:
Merge Request Checklists