Add support for new release commit review requirement bypass

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18155)

(cherry picked from commit a625354d82)
This commit is contained in:
Hugo Landau 2022-04-22 14:17:44 +01:00 committed by Tomas Mraz
parent 6c89858cc7
commit af5b3af7bd
1 changed files with 4 additions and 4 deletions

View File

@ -337,7 +337,7 @@ make update-fips-checksums >&42
if [ -n "$(git status --porcelain)" ]; then
$VERBOSE "== Committing updates"
git add -u
git commit $git_quiet -m 'make update'
git commit $git_quiet -m $'make update\n\nRelease: yes'
if [ -n "$reviewers" ]; then
addrev --nopr $reviewers
fi
@ -375,7 +375,7 @@ done
$VERBOSE "== Comitting updates and tagging"
git add -u
git commit $git_quiet -m "Prepare for release of $release_text"
git commit $git_quiet -m "Prepare for release of $release_text"$'\n\nRelease: yes'
if [ -n "$reviewers" ]; then
addrev --nopr $reviewers
fi
@ -477,7 +477,7 @@ done
$VERBOSE "== Committing updates"
git add -u
git commit $git_quiet -m "Prepare for $release_text"
git commit $git_quiet -m "Prepare for $release_text"$'\n\nRelease: yes'
if [ -n "$reviewers" ]; then
addrev --nopr $reviewers
fi
@ -508,7 +508,7 @@ if $do_branch; then
$VERBOSE "== Committing updates"
git add -u
git commit $git_quiet -m "Prepare for $release_text"
git commit $git_quiet -m "Prepare for $release_text"$'\n\nRelease: yes'
if [ -n "$reviewers" ]; then
addrev --nopr $reviewers
fi