From c5d8895645203a0aafbdbb775f91d3a7af85a37d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 2 Oct 2022 22:15:21 +0000 Subject: [PATCH] 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 --- scripts/release-notes.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/release-notes.pl b/scripts/release-notes.pl index 6afd53348..9e1c4a58c 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; }