Skip to content

Commit

Permalink
Merge pull request #17 from ryanrozich/fix-github-action-gh-identity
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanrozich committed May 5, 2024
2 parents 8fa5679 + 0161cd4 commit 4014195
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:
run: pip install bump2version
# This step installs the bump2version package

- name: Configure Git
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
# This step configures Git with a dummy email and name

- name: Get last commit message
id: get-commit-message
run: echo "::set-output name=message::$(git log -1 --pretty=%B)"
Expand Down

0 comments on commit 4014195

Please sign in to comment.