Skip to content

Commit

Permalink
fix: bot email in workflows
Browse files Browse the repository at this point in the history
email referenced a real github user :(
  • Loading branch information
ptitFicus committed Mar 27, 2024
1 parent 8de54ec commit f4ffe41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "izanami release bot"
git config --local user.name "izanami-release-bot"
git add --all
git commit -am "Update dev documentation"
- name: Push documentation
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
- name: release
run: |
git checkout .
git config --global user.email "[email protected]"
git config --global user.name "izanami release bot"
git config --global user.email "izanami-release-bot@users.noreply.github.com"
git config --global user.name "izanami-release-bot"
sbt "release release-version ${{ github.event.inputs.releaseVersion }} with-defaults skip-tests"
ls target
ls target/scala-2.13
Expand Down

0 comments on commit f4ffe41

Please sign in to comment.