Skip to content

Commit f47bc31

Browse files
authored
Create new version PR make target (#794)
1 parent 513281b commit f47bc31

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3056,9 +3056,12 @@ new-version: ## Update the Operator Version (must be run with NEXT_VERSION=x.y.z
30563056
GIT_BRANCH="version-update-$(VERSION)"
30573057
GIT_LABEL="version-update"
30583058

3059-
.PHONY: new-version-pr
3060-
new-version-pr: ## Create a PR to update the version
3059+
.PHONY: new-version-branch
3060+
new-version-branch: ## Create a PR to update the version
30613061
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
30623065
git commit -am "Version update to $(VERSION)"
30633066
git push --set-upstream origin $(GIT_BRANCH)
30643067

0 commit comments

Comments
 (0)