Skip to content

Commit 75e4cad

Browse files
authored
refactor(changesets): remove ignore filter (#5476)
We had several releases with specific JS framework specific changes that couldn't get summarized easily by just looking for `@db-ux/core-components` packages changes, so we have to include the others again. So those would need to get tidied up afterwards in the GitHub Releases page.
1 parent efd6525 commit 75e4cad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/github/changesets/publish.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function getFirstHeadline(changelog: string): string {
4646

4747
function getReleaseNotes(): string {
4848
const repoRoot = path.resolve(__dirname, '../../../');
49-
const changelogFiles = findChangelogFiles(repoRoot, ['output/**']);
49+
const changelogFiles = findChangelogFiles(repoRoot);
5050
const notes: string[] = [];
5151
for (const file of changelogFiles) {
5252
const changelog = fs.readFileSync(file, 'utf8');

0 commit comments

Comments
 (0)