-
-
Notifications
You must be signed in to change notification settings - Fork 4
Parse changelog entry adjustments #248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
ab9cb79
59fbc92
168ff78
93a67af
688c73a
3298e52
3a32aab
0b8e0cb
811057d
53d0041
9b8bc4a
890f2ab
840d6e9
077c44a
017c370
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -266,5 +266,7 @@ export function getCategory(description: string): ChangeCategory { | |
| function checkIfDescriptionIndicatesExcluded(description: string): boolean { | ||
| const _description = description.toLowerCase(); | ||
|
|
||
| return keywordsToIndicateExcluded.some((word) => _description.includes(word)); | ||
| return keywordsToIndicateExcluded.some((word) => | ||
| _description.includes(word.toLowerCase()), | ||
| ); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Redundant Lowercase Conversion Causes Performance RegressionThe |
||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.