Skip to content

Commit 4777a83

Browse files
committed
test(test-utils): disable GPG sign for commit/tag utility
1 parent cedf140 commit 4777a83

File tree

1 file changed

+2
-0
lines changed
  • testing/test-utils/src/lib/utils

1 file changed

+2
-0
lines changed

testing/test-utils/src/lib/utils/git.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ export async function initGitRepo(
2121
await git.init();
2222
await git.addConfig('user.name', name);
2323
await git.addConfig('user.email', email);
24+
await git.addConfig('commit.gpgSign', 'false');
25+
await git.addConfig('tag.gpgSign', 'false');
2426
await git.branch(['-M', 'main']);
2527
return git;
2628
}

0 commit comments

Comments
 (0)