- update the default categories to include the uncategorized category
This commit is contained in:
@@ -144,6 +144,7 @@ it('Should fill `template` placeholders', async () => {
|
|||||||
|
|
||||||
it('Should fill `template` placeholders, ignore', async () => {
|
it('Should fill `template` placeholders, ignore', async () => {
|
||||||
const configuration = mergeConfiguration(undefined, resolveConfiguration('', 'configs_test/configuration_empty_all_placeholders.json'))
|
const configuration = mergeConfiguration(undefined, resolveConfiguration('', 'configs_test/configuration_empty_all_placeholders.json'))
|
||||||
|
configuration.categories.pop() // drop `uncategorized` category
|
||||||
const releaseNotesBuilder = new ReleaseNotesBuilder(
|
const releaseNotesBuilder = new ReleaseNotesBuilder(
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
|
|||||||
@@ -376,6 +376,7 @@ it('Match multiple labels exhaustive for category', async () => {
|
|||||||
|
|
||||||
it('Deduplicate duplicated PRs', async () => {
|
it('Deduplicate duplicated PRs', async () => {
|
||||||
const customConfig = Object.assign({}, DefaultConfiguration)
|
const customConfig = Object.assign({}, DefaultConfiguration)
|
||||||
|
customConfig.categories.pop() // drop `uncategorized` category
|
||||||
customConfig.duplicate_filter = {
|
customConfig.duplicate_filter = {
|
||||||
pattern: '\\[ABC-....\\]',
|
pattern: '\\[ABC-....\\]',
|
||||||
on_property: 'title',
|
on_property: 'title',
|
||||||
@@ -388,6 +389,7 @@ it('Deduplicate duplicated PRs', async () => {
|
|||||||
|
|
||||||
it('Deduplicate duplicated PRs DESC', async () => {
|
it('Deduplicate duplicated PRs DESC', async () => {
|
||||||
const customConfig = Object.assign({}, DefaultConfiguration)
|
const customConfig = Object.assign({}, DefaultConfiguration)
|
||||||
|
customConfig.categories.pop() // drop `uncategorized` category
|
||||||
customConfig.sort = 'DESC'
|
customConfig.sort = 'DESC'
|
||||||
customConfig.duplicate_filter = {
|
customConfig.duplicate_filter = {
|
||||||
pattern: '\\[ABC-....\\]',
|
pattern: '\\[ABC-....\\]',
|
||||||
@@ -439,6 +441,7 @@ it('Use empty_content for empty category', async () => {
|
|||||||
|
|
||||||
it('Commit SHA-1 in commitMode', async () => {
|
it('Commit SHA-1 in commitMode', async () => {
|
||||||
const customConfig = Object.assign({}, DefaultConfiguration)
|
const customConfig = Object.assign({}, DefaultConfiguration)
|
||||||
|
customConfig.categories.pop() // drop `uncategorized` category
|
||||||
customConfig.sort = 'DESC'
|
customConfig.sort = 'DESC'
|
||||||
customConfig.pr_template = '${{MERGE_SHA}}'
|
customConfig.pr_template = '${{MERGE_SHA}}'
|
||||||
|
|
||||||
|
|||||||
+8577
-23884
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+3
-3
@@ -541,9 +541,6 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|||||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
github-pr-collector
|
|
||||||
Apache 2.0
|
|
||||||
|
|
||||||
has-flag
|
has-flag
|
||||||
MIT
|
MIT
|
||||||
MIT License
|
MIT License
|
||||||
@@ -700,6 +697,9 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|||||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
pr-collector
|
||||||
|
Apache 2.0
|
||||||
|
|
||||||
semver
|
semver
|
||||||
ISC
|
ISC
|
||||||
The ISC License
|
The ISC License
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "release-changelog-builder-action",
|
"name": "release-changelog-builder-action",
|
||||||
"version": "v3.0.0",
|
"version": "v4.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "A GitHub action that builds your release notes / changelog fast, easy and exactly the way you want.",
|
"description": "A GitHub action that builds your release notes / changelog fast, easy and exactly the way you want.",
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
|
|||||||
@@ -85,6 +85,10 @@ export const DefaultConfiguration: Configuration = {
|
|||||||
{
|
{
|
||||||
title: '## 🧪 Tests',
|
title: '## 🧪 Tests',
|
||||||
labels: ['test']
|
labels: ['test']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '## 📦 Uncategorized',
|
||||||
|
labels: []
|
||||||
}
|
}
|
||||||
], // the categories to support for the ordering
|
], // the categories to support for the ordering
|
||||||
ignore_labels: ['ignore'], // list of lables being ignored from the changelog
|
ignore_labels: ['ignore'], // list of lables being ignored from the changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user