build: update changelog generation script

This commit is contained in:
Miodec 2023-10-17 15:18:02 +01:00
parent 205b0f8f90
commit 157db8d024

View file

@ -71,8 +71,7 @@ function itemIsAddressingQuoteReports(item) {
item.scope?.includes("quote") || item.scope?.includes("quotes");
const messageReport =
item.message.includes("quote") &&
(item.message.includes("report") || item.message.includes("reports"));
item.message.includes("report") || item.message.includes("reports");
return scopeIsQuote && messageReport;
}