Skip to content

Commit

Permalink
Changing the commit author
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Dec 3, 2024
1 parent 8f4ab77 commit de104f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion convert-to-heed3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ for file in $(find heed/src -type f -name "*.rs"); do
fi
done

git commit --author "The CI <>" -am 'remove-me: heed3 changes generate by the convert-to-heed3.sh script'
# Make it easier to rollback by doing a commit
git config --global user.email "[email protected]"
git config --global user.name "The CI"
git commit -am 'remove-me: heed3 changes generate by the convert-to-heed3.sh script'

echo "Heed3 crate setup completed successfully. Configurations for the heed crate have been copied and modified."
echo "A commit (starting with remove-me) has been generated and must be deleted before merging into the main branch."

0 comments on commit de104f1

Please sign in to comment.