Create GitHub action for bumping patch versions#1259
Merged
Conversation
✅ Deploy Preview for krm-function-catalog ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a manual, workflow-dispatch GitHub Action for performing patch releases of functions/go KRM functions in this catalog, including building/pushing images, tagging, and creating GitHub Releases with generated notes.
Changes:
- Add
scripts/manual-patch-release.shto bump patch versions based on the latest existingfunctions/go/<fn>/vX.Y.Ztag, push images, create tags, and publish releases. - Add
.github/workflows/manual-patch-release.yamlto run the script viaworkflow_dispatchwith function selection and dry-run support. - Add
list-functionstargets to the rootMakefileandfunctions/go/Makefileto enumerate Go function names for validation and bulk release selection.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| scripts/manual-patch-release.sh | Implements patch bump resolution, image push, tag creation, and GitHub Release creation for selected functions. |
| .github/workflows/manual-patch-release.yaml | Provides a manual workflow entry point to run the patch-release script in CI with required permissions/tooling. |
| Makefile | Adds a top-level list-functions target used by the release script/workflow. |
| functions/go/Makefile | Adds list-functions target to output the canonical FUNCTIONS list one per line. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
b9f2984 to
431a647
Compare
aravindtga
reviewed
Jun 12, 2026
aravindtga
approved these changes
Jun 15, 2026
liamfallon
approved these changes
Jun 15, 2026
efiacor
requested changes
Jun 17, 2026
Signed-off-by: Mózes László Máté <laszlo.mozes@nokia.com> Assisted-by: Cursor:composer-2.5
Signed-off-by: Mózes László Máté <laszlo.mozes@nokia.com> Assisted-by: Cursor:composer-2.5
Signed-off-by: mozesl-nokia <laszlo.mozes@nokia.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Signed-off-by: mozesl-nokia <laszlo.mozes@nokia.com> Co-authored-by: Aravindhan Ayyanathan <aravindhan.a@est.tech>
Signed-off-by: Mózes László Máté <laszlo.mozes@nokia.com> Assisted-by: Cursor:Auto
Signed-off-by: Mózes László Máté <laszlo.mozes@nokia.com> Assisted-by: Cursor:composer-2.5
Signed-off-by: Mózes László Máté <laszlo.mozes@nokia.com> Assisted-by: Cursor:composer-2.5
Signed-off-by: mozesl-nokia <laszlo.mozes@nokia.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Signed-off-by: Mózes László Máté <laszlo.mozes@nokia.com>
Assisted-by: Cursor:Opus-4.7 Signed-off-by: Mózes László Máté <laszlo.mozes@nokia.com>
a756c79 to
6f52e57
Compare
efiacor
approved these changes
Jun 25, 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.
Closes kptdev/kpt#4588
Mostly written by Cursor's composer-2.5 with some much needed manual simplifying. Thus, the script itself looks a bit esoteric, so feel free to suggest some more readability improvements!