Skip to content

Commit

Permalink
Merge pull request #665 from ckeditor/changelog-blog-post-commented
Browse files Browse the repository at this point in the history
Other (env): The changelog generator now produces a commented out blog post placeholder by default. Closes ckeditor/ckeditor5#7954.
  • Loading branch information
pomek authored Aug 31, 2020
2 parents 739bc44 + a5f8602 commit 8ce5f25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Internal changes only (updated dependencies, documentation, etc.).
{{#if highlightsPlaceholder}}
### Release highlights

TODO: Add a link to the blog post.
<!-- TODO: Add a link to the blog post. -->

{{/if}}
{{#if collaborationFeatures}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ describe( 'dev-env/release-tools/utils', () => {
'### Release highlights'
);
expect( changesAsArray[ 2 ] ).to.equal(
'TODO: Add a link to the blog post.'
'<!-- TODO: Add a link to the blog post. -->'
);
expect( changesAsArray[ 3 ] ).to.equal(
'### Features'
Expand Down Expand Up @@ -820,7 +820,7 @@ describe( 'dev-env/release-tools/utils', () => {
'### Release highlights'
);
expect( changesAsArray[ 2 ] ).to.equal(
'TODO: Add a link to the blog post.'
'<!-- TODO: Add a link to the blog post. -->'
);
expect( changesAsArray[ 3 ] ).to.equal(
'### Collaboration features'
Expand Down

0 comments on commit 8ce5f25

Please sign in to comment.