]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
scripts/release-notes.pl: strip ci skip tag [ci skip]
authorViktor Szakats <commit@vsz.me>
Sun, 2 Oct 2022 22:15:21 +0000 (22:15 +0000)
committerViktor Szakats <commit@vsz.me>
Sun, 2 Oct 2022 22:15:21 +0000 (22:15 +0000)
Ref: https://github.com/curl/curl/commit/e604a82cae922bf86403a94f5803ac5e4303ae97#commitcomment-85637701

Reviewed-by: Daniel Stenberg
Closes #9634

scripts/release-notes.pl

index 6afd53348e7e594f6b5e80bb6fc0392a641ddb91..9e1c4a58c634abd158f1459362f7772450ae241f 100755 (executable)
@@ -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;
     }