Release notes: exclude no. RELNOTES: No. (test) PiperOrigin-RevId: 171673073
diff --git a/scripts/release/relnotes.sh b/scripts/release/relnotes.sh index 817ea62..1f2493b 100755 --- a/scripts/release/relnotes.sh +++ b/scripts/release/relnotes.sh
@@ -88,7 +88,7 @@ if [[ "$relnote" =~ $regex ]]; then local relnote_kind=${BASH_REMATCH[2]} local relnote_text="${BASH_REMATCH[3]}" - if [[ ! "$(echo $relnote_text | awk '{print tolower($0)}')" =~ ^(none|n/a)?.?$ ]]; then + if [[ ! "$(echo $relnote_text | awk '{print tolower($0)}')" =~ ^(none|n/a|no[ \.])?.?$ ]]; then eval "RELNOTES_${relnote_kind}+=(\"\${relnote_text}\")" fi fi