Skip to content

Commit

Permalink
test(test-utils): disable GPG sign for commit/tag utility
Browse files Browse the repository at this point in the history
  • Loading branch information
vmasek committed Jan 6, 2025
1 parent cedf140 commit 4777a83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions testing/test-utils/src/lib/utils/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ export async function initGitRepo(
await git.init();
await git.addConfig('user.name', name);
await git.addConfig('user.email', email);
await git.addConfig('commit.gpgSign', 'false');
await git.addConfig('tag.gpgSign', 'false');
await git.branch(['-M', 'main']);
return git;
}
Expand Down

0 comments on commit 4777a83

Please sign in to comment.