Skip to content
This repository has been archived by the owner on Apr 9, 2022. It is now read-only.

Update stefanzweifel/git-auto-commit-action to v4.9.2 #125

Merged
merged 1 commit into from
Mar 4, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,11 @@ jobs:
- run: npm install
- name: store-core-version
run: echo CORE_VERSION=`cat package.json | jq -r '.dependencies."@grouparoo/core"'` >> $GITHUB_ENV
- uses: stefanzweifel/git-auto-commit-action@fixes/145
- uses: stefanzweifel/git-auto-commit-action@4.9.2
with:
commit_message: Updating Packages
commit_user_name: Grouparoo Bot
commit_user_email: hello@grouparoo.com
commit_author: Grouparoo Bot <hello@grouparoo.com>
branch: ${{ github.head_ref }}
tagging_message: v${{ env.CORE_VERSION }}
# - name: git tag # This shouldn't be necessary if the above could push & tag at once
# run: if git rev-parse v${{ env.CORE_VERSION }} >/dev/null 2>&1; then echo 'tag exists'; else git tag v${{ env.CORE_VERSION }} && git push origin --tags; fi