1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Update release creation script (#5617)

This commit is contained in:
Sebastian Malton 2022-06-13 16:20:43 -04:00 committed by GitHub
parent 0dfd03e6df
commit dc1f1ab7f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,8 @@ const relaventPrsQuery = await Promise.all(
);
const relaventPrs = relaventPrsQuery
.filter(query => query.stdout)
.map(query => query.pr);
.map(query => query.pr)
.filter(pr => pr.labels.every(label => label.name !== "skip-changelog"));
const enhancementPrLabelName = "enhancement";
const bugfixPrLabelName = "bug";
@ -152,11 +153,15 @@ const prBodyLines = [
"",
];
function getPrEntry(pr) {
return `- ${pr.title} (**[#${pr.number}](https://github.com/lensapp/lens/pull/${pr.number})**) https://github.com/${pr.author.login}`;
}
if (enhancementPrs.length > 0) {
prBodyLines.push(
"## 🚀 Features",
"",
...enhancementPrs.map(pr => `- ${pr.title} (**#${pr.number}**) https://github.com/${pr.author.login}`),
...enhancementPrs.map(getPrEntry),
"",
);
}
@ -165,7 +170,7 @@ if (bugfixPrs.length > 0) {
prBodyLines.push(
"## 🐛 Bug Fixes",
"",
...bugfixPrs.map(pr => `- ${pr.title} (**#${pr.number}**) https://github.com/${pr.author.login}`),
...bugfixPrs.map(getPrEntry),
"",
);
}
@ -174,7 +179,7 @@ if (maintenencePrs.length > 0) {
prBodyLines.push(
"## 🧰 Maintenance",
"",
...maintenencePrs.map(pr => `- ${pr.title} (**#${pr.number}**) https://github.com/${pr.author.login}`),
...maintenencePrs.map(getPrEntry),
"",
);
}