Skip to content

Commit

Permalink
chore(data): remove global git config
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSunshyne committed Aug 26, 2024
1 parent 9665ba5 commit 4f99bb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontendmu-data/scripts/update-contributors.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ async function updateContributors() {
console.log("Contributors file updated.");

// Configure Git user and email for the commit
execSync('git config --global user.name "GitHub Action"');
execSync('git config --global user.email "action@github.com"');
execSync('git config user.name "GitHub Action"');
execSync('git config user.email "action@github.com"');

// Stage the changes
execSync("git add .");
Expand Down

0 comments on commit 4f99bb3

Please sign in to comment.