shake: changelogs: don't ignore ; messages any more
A leading semicolon now means something different (skip CI).
This commit is contained in:
parent
3beba678fe
commit
9a18eed9dd
5
Shake.hs
5
Shake.hs
@ -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))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user