2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-20 20:00:40 +03:00

chore(ci): added labeling and notification for published PRs; (#6059)

This commit is contained in:
Dmitriy Mozgovoy
2023-11-08 16:17:55 +02:00
committed by GitHub
parent dd465ab22b
commit 37cbf9214a
13 changed files with 373 additions and 5 deletions
+12
View File
@@ -0,0 +1,12 @@
export const matchAll = (text, regexp, cb) => {
let match;
while((match = regexp.exec(text))) {
cb(match);
}
}
export const parseSection = (body, name, cb) => {
matchAll(body, new RegExp(`^(#+)\\s+${name}?(.*?)^\\1\\s+\\w+`, 'gims'), cb);
}
export const parseVersion = (rawVersion) => /^v?(\d+).(\d+).(\d+)/.exec(rawVersion);