We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c3e94f commit ec909f9Copy full SHA for ec909f9
1 file changed
scripts/update-to-latest.sh
@@ -58,8 +58,11 @@ git --no-pager diff
58
if ! git diff --no-ext-diff --quiet --exit-code; then
59
# dirty repo, ready to commit.
60
61
+ git config user.name 'DevTools Bot'
62
+ git config user.email '24444246+devtools-bot@users.noreply.github.com'
63
+
64
# commit so we can use the new commit in the changelog
- git commit --all -m "Roll protocol to r$commit_rev" --author "DevTools Bot <24444246+devtools-bot@users.noreply.github.com>"
65
+ git commit --all -m "Roll protocol to r$commit_rev"
66
67
# generate changelog
68
cd "$protocol_repo_path/scripts" || exit 1
0 commit comments