Open
Conversation
bkochendorfer
approved these changes
Mar 27, 2026
grahamalama
reviewed
Mar 27, 2026
Comment on lines
+61
to
+62
| git config user.name "github-actions[bot]" | ||
| git config user.email "github-actions[bot]@users.noreply.github.com" |
Contributor
There was a problem hiding this comment.
I'm not sure if this is still needed these days, but https://github.com/orgs/community/discussions/26560#discussioncomment-3531273
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
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.
The previous release process ran chart version checks and helm-docs generation as pre-commit hooks, requiring contributors to manually bump versions and regenerate docs before a commit could go through. PRs with multiple commits have usually forced contributors into scenarios where they must choose to either continually bump chart versions or skip pre-commit checks altogether, neither of which is ideal. Additionally, with more contributors regularly working in this repo, requiring users to manage chart versions as part of their changes has created merge conflicts that have become increasingly cumbersome to work around.
This PR moves version bumping and helm-docs updates into CI, where they happen automatically at merge time based on a PR label. This follows a pattern already in use in the terraform-modules repo, where the title of the PR is used to programmatically determine the change level (major/minor/patch) if semantic commit messages are used. Users may also manually label PRs to set or override the change level.
The pre-commit hook that checked for version bumps has been removed, and contributors no longer need to think about versioning as part of their local commit flow.
Changes:
release on merge
previous_version and path fields needed by the release workflow
manual workflow dispatch