diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 8e1c17b..a59c79a 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -17,7 +17,7 @@ jobs: uses: "actions/setup-node@v1" with: node-version: 8.10 - - name: "Bump Version" + - name: "Automated Version Bump" uses: "phips28/gh-action-bump-version@master" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/action.yml b/action.yml index 46941f5..e84718c 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,4 @@ -name: Bump Version +name: Automated Version Bump description: Automated version bump for npm packages. runs: using: docker diff --git a/index.js b/index.js index 8078b35..b2f0345 100644 --- a/index.js +++ b/index.js @@ -26,7 +26,7 @@ Toolkit.run(async tools => { try { const current = pkg.version.toString() // set git user - await tools.runInWorkspace('git', ['config', 'user.name', '"Bump Version"']) + await tools.runInWorkspace('git', ['config', 'user.name', '"Automated Version Bump"']) await tools.runInWorkspace('git', ['config', 'user.email', '"gh-action-bump-version@users.noreply.github.com"']) await tools.runInWorkspace('git', ['checkout', 'master'])