Skip to content

Commit 6082aaf

Browse files
committed
Remove [skip ci] from version bump commits to allow workflow triggers
1 parent b6aaebc commit 6082aaf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ bump-patch: ## Bump patch version (0.0.1 -> 0.0.2)
7575
sed -i '' "s|<version>$(CURRENT_VERSION)</version>|<version>$$NEW_VERSION</version>|" pom.xml; \
7676
sed -i '' "s|version = '$(CURRENT_VERSION)'|version = '$$NEW_VERSION'|" build.gradle; \
7777
git add pom.xml build.gradle; \
78-
git commit -m "Bump version to $$NEW_VERSION [skip ci]"; \
78+
git commit -m "Bump version to $$NEW_VERSION"; \
7979
git tag -a $$NEW_TAG -m "Release $$NEW_TAG"; \
8080
echo "✓ Created tag $$NEW_TAG (use 'make push-tag' to push)"
8181

@@ -91,7 +91,7 @@ bump-minor: ## Bump minor version (0.0.1 -> 0.1.0)
9191
sed -i '' "s|<version>$(CURRENT_VERSION)</version>|<version>$$NEW_VERSION</version>|" pom.xml; \
9292
sed -i '' "s|version = '$(CURRENT_VERSION)'|version = '$$NEW_VERSION'|" build.gradle; \
9393
git add pom.xml build.gradle; \
94-
git commit -m "Bump version to $$NEW_VERSION [skip ci]"; \
94+
git commit -m "Bump version to $$NEW_VERSION"; \
9595
git tag -a $$NEW_TAG -m "Release $$NEW_TAG"; \
9696
echo "✓ Created tag $$NEW_TAG (use 'make push-tag' to push)"
9797

@@ -107,7 +107,7 @@ bump-major: ## Bump major version (0.0.1 -> 1.0.0)
107107
sed -i '' "s|<version>$(CURRENT_VERSION)</version>|<version>$$NEW_VERSION</version>|" pom.xml; \
108108
sed -i '' "s|version = '$(CURRENT_VERSION)'|version = '$$NEW_VERSION'|" build.gradle; \
109109
git add pom.xml build.gradle; \
110-
git commit -m "Bump version to $$NEW_VERSION [skip ci]"; \
110+
git commit -m "Bump version to $$NEW_VERSION"; \
111111
git tag -a $$NEW_TAG -m "Release $$NEW_TAG"; \
112112
echo "✓ Created tag $$NEW_TAG (use 'make push-tag' to push)"
113113

0 commit comments

Comments
 (0)