From a276b8f9ad712dba69af4c2710f541538dd189c0 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Fri, 18 Dec 2020 00:27:33 +0100 Subject: [PATCH] chore(release): simplify auto-generated commits --- tasks/stages/update-demo | 2 +- tasks/stages/update-examples | 2 +- tasks/stages/update-integration-test | 2 +- tasks/stages/update-website | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/stages/update-demo b/tasks/stages/update-demo index ec999b99..92a465c4 100755 --- a/tasks/stages/update-demo +++ b/tasks/stages/update-demo @@ -20,7 +20,7 @@ git config user.name "$BPMN_IO_USERNAME" git config push.default simple git add -A -git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG" +git commit -m "deps: bump bpmn-js to $TRAVIS_TAG" git tag "bpmn-js-$TRAVIS_TAG" git push -q &2>/dev/null git push --tags -q &2>/dev/null diff --git a/tasks/stages/update-examples b/tasks/stages/update-examples index 01ad72d7..562db209 100755 --- a/tasks/stages/update-examples +++ b/tasks/stages/update-examples @@ -27,7 +27,7 @@ if [[ "x$SKIP_COMMIT" = "x" ]]; then # add all resources git add -A - git commit -m "chore(project): bump examples to $TRAVIS_TAG" + git commit -m "chore: bump examples to $TRAVIS_TAG" git tag "$TRAVIS_TAG" git push -q &2>/dev/null git push --tags -q &2>/dev/null diff --git a/tasks/stages/update-integration-test b/tasks/stages/update-integration-test index b9900b76..3c2405db 100755 --- a/tasks/stages/update-integration-test +++ b/tasks/stages/update-integration-test @@ -20,7 +20,7 @@ git config user.name "$BPMN_IO_USERNAME" git config push.default simple git add -A -git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG" +git commit -m "deps: bump bpmn-js to $TRAVIS_TAG" git tag "$TRAVIS_TAG" git push -q &2>/dev/null git push --tags -q &2>/dev/null diff --git a/tasks/stages/update-website b/tasks/stages/update-website index 6f133db0..b116681e 100755 --- a/tasks/stages/update-website +++ b/tasks/stages/update-website @@ -26,7 +26,7 @@ if [[ "x$SKIP_COMMIT" = "x" ]]; then # add all resources git add -A - git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG" + git commit -m "chore: bump bpmn-js to $TRAVIS_TAG" git push -q &2>/dev/null else echo "Skipping commit (SKIP_COMMIT=$SKIP_COMMIT)"