Skip to content

Commit

Permalink
Add support for new release commit review requirement bypass
Browse files Browse the repository at this point in the history
Reviewed-by: Matt Caswell <[email protected]>
Reviewed-by: Richard Levitte <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
(Merged from openssl#18155)
  • Loading branch information
hlandau authored and t8m committed Apr 25, 2022
1 parent 2c0a944 commit a625354
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dev/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -375,7 +375,7 @@ done

$VERBOSE "== Committing 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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a625354

Please sign in to comment.