Skip to content

Commit

Permalink
fix: configure git user
Browse files Browse the repository at this point in the history
  • Loading branch information
barredterra committed Feb 11, 2024
1 parent 4149f08 commit 3196106
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/helper/update_pot_file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@ cd ./frappe-bench || exit
echo "Generating POT file..."
bench generate-pot-file --app frappe

echo "Commiting changes..."
cd "${GITHUB_WORKSPACE}"

echo "Configuring up git user..."
git config user.email "developers@erpnext.com"
git config user.name "frappe-pr-bot"

echo "Commiting changes..."
git checkout -b update-pot-file
git add .
git commit -m "chore: update POT file"
Expand Down

0 comments on commit 3196106

Please sign in to comment.