Skip to content

Commit b77e309

Browse files
committed
Use socket-bot identity in publish script
1 parent fa30186 commit b77e309

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

scripts/publish-npm-packages.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,12 @@ async function publishAtCommit(sha) {
268268
const changedFiles = await getChangedFiles()
269269
if (changedFiles.length > 0) {
270270
logger.log('Committing manifest.json updates...')
271+
await spawn('git', ['config', 'user.name', 'Socket Bot'])
272+
await spawn('git', [
273+
'config',
274+
'user.email',
275+
'94589996+socket-bot@users.noreply.github.com',
276+
])
271277
await spawn('git', ['add', 'registry/manifest.json'])
272278
await spawn('git', [
273279
'commit',

0 commit comments

Comments
 (0)