OSSM: enable auto pipeline mode for sail-operator#81402
Conversation
Register openshift-service-mesh/sail-operator in the pipeline-controller config with trigger: auto so that e2e-ocp jobs are automatically triggered only after the required first-stage jobs (unit, lint, gencheck, integration) pass, rather than running all jobs in parallel or requiring manual /test commands. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
[REHEARSALNOTIFIER] Note: If this PR includes changes to step registry files ( |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository YAML (base), Central YAML (inherited) Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (1)
WalkthroughAdds a new ChangesPipeline Controller Configuration
Estimated code review effort: 1 (Trivial) | ~2 minutes Suggested labels: Suggested reviewers: 🚥 Pre-merge checks | ✅ 15✅ Passed checks (15 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
@fjglira: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: fjglira, hector-vido The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
The e2e-ocp presubmit job in openshift-service-mesh/sail-operator was never running automatically on pull requests. The job was correctly marked as a second-stage job (always_run: false, pipeline_skip_if_only_changed), but the repository was not registered with the pipeline-controller, so nothing ever triggered it. As a result, PRs merged without OCP e2e coverage.
Solution
Register openshift-service-mesh/sail-operator in the pipeline-controller config with trigger: auto mode for all active branches (main, release-3.0 through release-3.4).
With this change:
Summary by CodeRabbit
This change enables automated CI pipeline handling for
openshift-service-mesh/sail-operatorby registering the repository withtrigger: autoon the supported branches (mainandrelease-3.0throughrelease-3.4). In practical terms, this lets thee2e-ocppresubmit job run as the intended second-stage job after the required first-stage checks pass, while preserving the existing skip behavior for docs-only changes.