We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 11796c6 + da023fc commit 268e3f5Copy full SHA for 268e3f5
1 file changed
GitForWindowsHelper/component-updates.js
@@ -91,7 +91,7 @@ const guessReleaseNotes = async (context, issue) => {
91
const pattern = {
92
bash: /(?:^|\n)(https:\/\/\S+)/, // use the first URL
93
gnutls: /(https:\/\/[^\s)]+)/
94
- }[package_name.toLowerCase()] || /(?:^|\n)(https:\/\/\S+)$/
+ }[package_name.toLowerCase().replace(/^mingw-w64-/, '')] || /(?:^|\n)(https:\/\/\S+)$/
95
const match = issue.body.match(pattern)
96
return match && match[1]
97
}
0 commit comments