ci: default to beta chart versions, stable via workflow_dispatch#33
Merged
ci: default to beta chart versions, stable via workflow_dispatch#33
Conversation
- Push-triggered builds produce beta versions (e.g. 0.2.1-beta.12345) - workflow_dispatch adds 'release' toggle for stable versions - Beta charts are invisible to `helm install` (requires --devel or --version) - Bump PRs labeled as beta or stable
pahud
approved these changes
Apr 4, 2026
henrieopenclaw
added a commit
to henrieopenclaw/agent-broker
that referenced
this pull request
Apr 6, 2026
…nabdev#33) * ci: default to beta chart versions, stable via workflow_dispatch - Push-triggered builds produce beta versions (e.g. 0.2.1-beta.12345) - workflow_dispatch adds 'release' toggle for stable versions - Beta charts are invisible to `helm install` (requires --devel or --version) - Bump PRs labeled as beta or stable * docs: add RELEASING.md for maintainers * docs: add ASCII flow diagrams to RELEASING.md --------- Co-authored-by: thepagent <thepagent@users.noreply.github.com>
Reese-max
pushed a commit
to Reese-max/openab
that referenced
this pull request
Apr 12, 2026
…nabdev#33) * ci: default to beta chart versions, stable via workflow_dispatch - Push-triggered builds produce beta versions (e.g. 0.2.1-beta.12345) - workflow_dispatch adds 'release' toggle for stable versions - Beta charts are invisible to `helm install` (requires --devel or --version) - Bump PRs labeled as beta or stable * docs: add RELEASING.md for maintainers * docs: add ASCII flow diagrams to RELEASING.md --------- Co-authored-by: thepagent <thepagent@users.noreply.github.com>
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
Chart bumps now produce pre-release (beta) versions by default. Stable releases require explicit opt-in.
How it works
0.2.1-beta.123450.2.1-beta.12346release: true0.2.1User impact
helm install agent-broker agent-broker/agent-broker→ always installs latest stable (e.g. 0.2.0)helm search repo agent-broker→ only shows stable versionshelm search repo agent-broker --devel→ shows beta versions toohelm install ... --version 0.2.1-beta.12345→ explicitly installs a betaChanges
releaseboolean input to workflow_dispatchGITHUB_RUN_NUMBERfor monotonic ordering