We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 513281b commit f47bc31Copy full SHA for f47bc31
Makefile
@@ -3056,9 +3056,12 @@ new-version: ## Update the Operator Version (must be run with NEXT_VERSION=x.y.z
3056
GIT_BRANCH="version-update-$(VERSION)"
3057
GIT_LABEL="version-update"
3058
3059
-.PHONY: new-version-pr
3060
-new-version-pr: ## Create a PR to update the version
+.PHONY: new-version-branch
+new-version-branch: ## Create a PR to update the version
3061
git checkout -b $(GIT_BRANCH)
3062
+
3063
+.PHONY: new-version-pr
3064
+new-version-pr: new-version-branch new-version ## Create a PR to update the version
3065
git commit -am "Version update to $(VERSION)"
3066
git push --set-upstream origin $(GIT_BRANCH)
3067
0 commit comments