We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8255fc commit cf950b2Copy full SHA for cf950b2
1 file changed
src/AutoRelease/SubCommands/NoteSubCommand.cs
@@ -62,8 +62,8 @@ public override async Task<SubCommandResult> HandleResultAsync(INoteSubCommandIn
62
63
var commitMessages = githubCommits
64
.Select(e => new CommitMessage(e.Commit, inputs))
65
- .Where(e => e.Type.Ordering == (byte)CommitMessageTypeOrder.Ignore
66
- || !inputs.Ignores.Any(e.Description.StartsWith))
+ .Where(e => e.Type.Ordering != (byte)CommitMessageTypeOrder.Ignore
+ && !inputs.Ignores.Any(e.Description.StartsWith))
67
.GroupBy(e => e.Type)
68
.OrderBy(e => e.Key.Ordering)
69
.ToList();
0 commit comments