Skip to content

Commit

Permalink
Provide git identity
Browse files Browse the repository at this point in the history
Per the error:
$ git rebase origin/main
Committer identity unknown
*** Please tell me who you are.
  • Loading branch information
praiskup committed Sep 6, 2024
1 parent d546089 commit da1fcfe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions container/cmd
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ if test "$GITHUB_EVENT_NAME" = 'pull_request'; then
git config --global --add safe.directory '*'
git config --global advice.detachedHead false
git config --global init.defaultBranch main
git config --global user.email "[email protected]"
git config --global user.name "VCS Diff Lint automation"

(
echo "## Rebasing $INPUT_PULL_REQUEST_HEAD onto $target_branch ##"
Expand Down

0 comments on commit da1fcfe

Please sign in to comment.