From 8058353346f53b12ad17db2a72dd1a318b48e541 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sat, 17 Oct 2020 18:03:46 +0200 Subject: [PATCH] - adjust defaults to already provide a great base set of categories --- src/configuration.ts | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/configuration.ts b/src/configuration.ts index 4411a4c..e2c25af 100644 --- a/src/configuration.ts +++ b/src/configuration.ts @@ -30,6 +30,19 @@ export const DefaultConfiguration: Configuration = { template: '${{CHANGELOG}}', // the global template to host the changelog pr_template: '- ${{TITLE}}\n - PR: #${{NUMBER}}', // the per PR template to pick empty_template: '- no changes', // the template to use if no pull requests are found - categories: [], // the categories to support for the ordering + categories: [ + { + title: '## ๐Ÿš€ Features', + labels: ['feature'] + }, + { + title: '## ๐Ÿ› Fixes', + labels: ['fix'] + }, + { + title: '## ๐Ÿงช Tests', + labels: ['test'] + } + ], // the categories to support for the ordering transformers: [] // transformers to apply on the PR description according to the `pr_template` }