feat: add git-ref parameter to support deploying from specific branches#227
Closed
feat: add git-ref parameter to support deploying from specific branches#227
Conversation
Add git-ref input parameter to deploy workflows to enable building and deploying from specific git refs (branches, tags, or SHAs). This enables PR comment-based deployments where the PR branch needs to be checked out and built. Changes: - Add git-ref input to component-build.yml and update checkouts to use it - Add git-ref input to deploy-generic.yml, deploy-generic-v2.yml - Add git-ref input to deploy-kotlin.yml, deploy-python.yml - Update image-tag output to use actual checked-out SHA instead of github.sha
a9223b7 to
535a7a9
Compare
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.
Add git-ref input parameter to deploy workflows to enable building and deploying from specific git refs (branches, tags, or SHAs). This enables PR comment-based deployments where the PR branch needs to be checked out and built.
Changes
git-refinput tocomponent-build.ymland update checkouts to use itgit-refinput todeploy-generic.yml,deploy-generic-v2.ymlgit-refinput todeploy-kotlin.yml,deploy-python.ymlimage-tagoutput to use actual checked-out SHA instead ofgithub.shaUse case
Enables workflows like:
Backwards compatible
The
git-refparameter is optional and defaults to the triggering ref, so existing workflows continue to work without changes.