From: Viktor Szakats Date: Sun, 2 Oct 2022 22:15:21 +0000 (+0000) Subject: scripts/release-notes.pl: strip ci skip tag [ci skip] X-Git-Tag: curl-7_86_0~130 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5d8895645203a0aafbdbb775f91d3a7af85a37d;p=thirdparty%2Fcurl.git scripts/release-notes.pl: strip ci skip tag [ci skip] Ref: https://github.com/curl/curl/commit/e604a82cae922bf86403a94f5803ac5e4303ae97#commitcomment-85637701 Reviewed-by: Daniel Stenberg Closes #9634 --- diff --git a/scripts/release-notes.pl b/scripts/release-notes.pl index 6afd53348e..9e1c4a58c6 100755 --- a/scripts/release-notes.pl +++ b/scripts/release-notes.pl @@ -123,6 +123,7 @@ for my $l (@gitlog) { elsif(($l =~ /^ (.*)/) && !$first) { # first line $short = $1; + $short =~ s/ ?\[(ci skip|skip ci)\]//g; $first = 1; push @line, $short; }