Skip to content

Commit

Permalink
fix: invalid email in pre commit workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-mayer committed Oct 23, 2024
1 parent f2e95b5 commit 58ad525
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pre_commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
SKIP: "no-commit-to-branch" # if not skipped, will always fail on main
- name: Push changes
run: |
git config --global user.name "github-actions"
git config --global user.email "github-actions@github.com"
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
if git diff-index --quiet HEAD; then
echo "No changes were made"
Expand Down

0 comments on commit 58ad525

Please sign in to comment.