Skip to content

Commit

Permalink
Configure Git
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrassia committed Oct 7, 2024
1 parent db11e5d commit 097c66b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/repository-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,13 @@ jobs:
echo "version=${{ steps.calculate-next-version.outputs.version }}" >> $GITHUB_OUTPUT
fi
- name: Configure Git
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
- name: Commit files
run: git commit -m "Bumped version to ${{ steps.set-final-version-output.outputs.version }}"
run: git commit -m "Bumped version to ${{ steps.set-final-version-output.outputs.version }}" -a

- name: Push changes
run: git push
Expand Down

0 comments on commit 097c66b

Please sign in to comment.