shake: changelogs: don't ignore ; messages any more

A leading semicolon now means something different (skip CI).
This commit is contained in:
Simon Michael 2021-07-20 22:39:46 -10:00
parent 3beba678fe
commit 9a18eed9dd

View File

@ -683,7 +683,10 @@ main = do
-- interesting commit messages between lastrev and HEAD, cleaned up
let
interestingpaths = fromMaybe projectChangelogExcludeDirs mpkg
interestingmessages = "--invert-grep --grep '^;'" -- ignore commits beginning with ;
-- interestingmessages = "--invert-grep --grep '^;'" -- ignore commits beginning with ;
-- TODO: update for new commit conventions. ; now means skip CI,
-- feat:/imp:/fix: means release notes, pkg:/lib: means changelogs, etc.
interestingmessages = ""
newitems <- fromStdout <$>
(cmd Shell gitlog changelogGitFormat (lastrev++"..") interestingmessages "--" interestingpaths
"|" changelogCleanupCmd :: Action (Stdout String))