Integrate helm-chart repo release into OSS release workflow#1960
Merged
maor-rozenfeld merged 5 commits intomainfrom Feb 20, 2026
Merged
Conversation
The Helm chart has moved to openops-cloud/helm-chart. Remove the in-repo chart directory and add a README redirecting users to the dedicated repository. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Dispatch the helm-chart release workflow after the OSS release is created, passing the version and draft flag. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Moves the Helm chart out of this repository into openops-cloud/helm-chart, leaving a redirect README in deploy/helm/, and extends the OSS release workflow to trigger the external Helm chart release workflow with the computed version.
Changes:
- Removed the in-repo Helm chart (
deploy/helm/openops/**). - Added
deploy/helm/README.mdredirecting users to the new Helm chart repository and install instructions. - Added a
trigger-helm-chart-releasejob to.github/workflows/release.ymlto dispatch the helm-chart repo release workflow.
Reviewed changes
Copilot reviewed 27 out of 27 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| deploy/helm/openops/values.yaml | Removes chart default values as part of chart migration out of repo |
| deploy/helm/openops/values.overrides-example.yaml | Removes example overrides file as part of chart migration out of repo |
| deploy/helm/openops/templates/service-tables.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/service-redis.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/service-postgres.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/service-nginx.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/service-engine.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/service-app.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/service-analytics.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/pvc-tables.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/pvc-redis.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/pvc-postgres.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/deployment-tables.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/deployment-redis.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/deployment-postgres.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/deployment-nginx.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/deployment-engine.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/deployment-app.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/deployment-analytics.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/configmap-postgres.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/configmap-nginx.yaml | Removes chart template as part of chart migration out of repo |
| deploy/helm/openops/templates/_helpers.tpl | Removes chart helpers as part of chart migration out of repo |
| deploy/helm/openops/README.md | Removes in-repo chart documentation as part of chart migration out of repo |
| deploy/helm/openops/Chart.yaml | Removes in-repo chart metadata as part of chart migration out of repo |
| deploy/helm/openops/.gitignore | Removes chart-specific ignore rules as part of chart migration out of repo |
| deploy/helm/README.md | Adds redirect README pointing users to the new helm-chart repository |
| .github/workflows/release.yml | Adds job to dispatch helm-chart repo release workflow during OSS release |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…-chart-repo-release-into-oss-release # Conflicts: # deploy/helm/openops/values.yaml
…-chart-repo-release-into-oss-release # Conflicts: # deploy/helm/openops/values.yaml
|
MarceloRGonc
approved these changes
Feb 20, 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.



Summary
Replace the in-repo Helm chart with a redirect README pointing to
openops-cloud/helm-chart, and add atrigger-helm-chart-releasejob to the release workflow that dispatches the helm-chart release with the correct version and draft flag.Changes
deploy/helm/openops/directory (chart now lives inopenops-cloud/helm-chart)deploy/helm/README.mdredirecting users to the new repotrigger-helm-chart-releasejob to.github/workflows/release.ymlResolves CI-173.