ci: add helm lint and template validation on PRs#173
Open
camjay wants to merge 2 commits into
Open
Conversation
Runs helm lint and helm template for all charts on pull requests that touch files under charts/. Catches template rendering errors before merge. Uses the same Helm version (v3.12.0) and setup action as release.yaml.
65fa2c3 to
1c588f1
Compare
This was referenced Mar 24, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a pull-request CI workflow to validate Helm charts when changes touch charts/, helping catch templating/lint issues before merge and aligning Helm setup with the existing chart release workflow.
Changes:
- Introduce a new PR-triggered GitHub Actions workflow scoped to
charts/**changes. - Run
helm lintacross each chart directory undercharts/. - Run
helm templateacross each chart directory undercharts/.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
sk-portkey
requested changes
Mar 27, 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.
Adds a CI workflow that runs
helm lintandhelm templatefor all charts on pull requests that touchcharts/.Catches template rendering errors (missing values, broken Go templates, invalid YAML) before merge. Uses the same Helm version and setup action as the existing
release.yaml.