From 9def44444213097746e040431f50e0541c9d7e78 Mon Sep 17 00:00:00 2001 From: Ponk <81079018+P0nk@users.noreply.github.com> Date: Tue, 27 Dec 2022 15:07:12 +0100 Subject: [PATCH] Fix version bump not obeying merge commit message (#157) #patch * Fix version bump not obeying merge commit message * Test the fix to bump-version * Fix reference to specific tag of github-tag-action * Dummy patch commit #patch * Clean up testing of bump-version --- .github/workflows/bump-version.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index c3d93080eb..409ece38aa 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -1,4 +1,5 @@ # This workflow will tag the merge commit when merging a PR into the master branch. +# Add "#patch", "#minor", or "#major" at end of the merge commit subject to dictate the type of bump. name: Bump version on: @@ -16,7 +17,8 @@ jobs: fetch-depth: '0' - name: Bump version and push tag - uses: anothrNick/github-tag-action@v1 + uses: anothrNick/github-tag-action@1.55.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - WITH_V: true \ No newline at end of file + WITH_V: true + BRANCH_HISTORY: last \ No newline at end of file