From 7220010909bfdbf7eaa054ab2bab3d9b49ca85a8 Mon Sep 17 00:00:00 2001 From: ahanriat Date: Wed, 7 Aug 2019 17:21:53 +0200 Subject: [PATCH] Add tooling section --- dist/lib.js | 8 ++++++-- src/__tests__/__snapshots__/lib.test.ts.snap | 18 +++++++++++++++--- src/lib.ts | 8 ++++++-- 3 files changed, 27 insertions(+), 7 deletions(-) diff --git a/dist/lib.js b/dist/lib.js index b0e29d0..dc291cf 100644 --- a/dist/lib.js +++ b/dist/lib.js @@ -18,8 +18,12 @@ exports.orderedGroups = [ matcher: message => /.*(upgrade|⬆️).*/i.test(message), }, { - label: '### Technical πŸ› :', - matcher: message => /.*(tooling|tech|chore|e2e|πŸ› ).*/i.test(message), + label: '### Technical πŸ‘¨β€πŸ”§:', + matcher: message => /.*(tech|chore|e2e).*/i.test(message), + }, + { + label: '### Tooling πŸ› :', + matcher: message => /.*(tooling).*/i.test(message), }, { label: '### Bug fixes πŸ›:', diff --git a/src/__tests__/__snapshots__/lib.test.ts.snap b/src/__tests__/__snapshots__/lib.test.ts.snap index 1a9fd4d..a09f0f1 100644 --- a/src/__tests__/__snapshots__/lib.test.ts.snap +++ b/src/__tests__/__snapshots__/lib.test.ts.snap @@ -18,7 +18,11 @@ exports[`pretty release prettifyRelease Prettify the release note 2/: prettyRele -### Technical πŸ› : +### Technical πŸ‘¨β€πŸ”§: + + + +### Tooling πŸ› : @@ -58,10 +62,14 @@ exports[`pretty release prettifyRelease Prettify the release note is re entrant: - 🌈Upgrade and fix Storybook (#1916) (Antoine Hanriat) -### Technical πŸ› : +### Technical πŸ‘¨β€πŸ”§: - Chore/loading states (#1919) (Nikita Nikitin) +### Tooling πŸ› : + + + ### Bug fixes πŸ›: - BUG-165 Profile | Weight difference value is reset to 0 after login (#1902) (Arkalyk Akash) - Fix Readme links to react/ -> src/ (ahanriat) @@ -116,10 +124,14 @@ exports[`pretty release prettifyRelease Prettify the release note: prettyRelease - 🌈Upgrade and fix Storybook (#1916) (Antoine Hanriat) -### Technical πŸ› : +### Technical πŸ‘¨β€πŸ”§: - Chore/loading states (#1919) (Nikita Nikitin) +### Tooling πŸ› : + + + ### Bug fixes πŸ›: - BUG-165 Profile | Weight difference value is reset to 0 after login (#1902) (Arkalyk Akash) - Fix Readme links to react/ -> src/ (ahanriat) diff --git a/src/lib.ts b/src/lib.ts index 8589611..0a6703d 100644 --- a/src/lib.ts +++ b/src/lib.ts @@ -22,8 +22,12 @@ export const orderedGroups: Group[] = [ matcher: message => /.*(upgrade|⬆️).*/i.test(message), }, { - label: '### Technical πŸ› :', - matcher: message => /.*(tooling|tech|chore|e2e|πŸ› ).*/i.test(message), + label: '### Technical πŸ‘¨β€πŸ”§:', + matcher: message => /.*(tech|chore|e2e).*/i.test(message), + }, + { + label: '### Tooling πŸ› :', + matcher: message => /.*(tooling).*/i.test(message), }, { label: '### Bug fixes πŸ›:',