Skip to content

Commit

Permalink
chore: include breaking prs in release draft (#6496)
Browse files Browse the repository at this point in the history
  • Loading branch information
doodlewind authored Mar 18, 2024
1 parent a434ae8 commit 477a6e9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/release-note/notable-prs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ async function getPRsWithLabel(prNumbers, githubToken) {
);
const pr = await response.json();

if (pr.labels && pr.labels.some(label => label.name === 'notable')) {
if (
pr.labels &&
pr.labels.some(
label => label.name === 'notable' || label.name === 'breaking'
)
) {
notablePRs.push(pr);
}
}
Expand Down

1 comment on commit 477a6e9

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Size Report

Bundles

Entry Size Gzip Brotli
examples/basic 14 MB (+11.9 kB) 2.9 MB (+2.28 kB) 1.79 MB (+1.19 kB)

Packages

Name Size Gzip Brotli
blocks 2.19 MB (+1.58 kB) 511 kB (+288 B) 373 kB (+407 B)
editor 84 B 89 B 63 B
store 83 B 88 B 63 B
inline 84 B 88 B 63 B

Please sign in to comment.