Skip to content

Commit ee64fe6

Browse files
committed
chore: avoid gpg password prompt
1 parent 1b599f4 commit ee64fe6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

@packages/test/src/git.js

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ async function setup(cwd) {
3636
try {
3737
await execa('git', ['config', 'user.name', 'ava'], {cwd});
3838
await execa('git', ['config', 'user.email', '[email protected]'], {cwd});
39+
await execa('git', ['config', 'commit.gpgsign', false, {cwd}]);
3940
} catch (err) {
4041
console.warn(`git config in ${cwd} failed`, err.message);
4142
}

0 commit comments

Comments
 (0)