Skip to content

Commit

Permalink
Add tooling section
Browse files Browse the repository at this point in the history
  • Loading branch information
ahanriat committed Aug 7, 2019
1 parent 3b52a78 commit 7220010
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
8 changes: 6 additions & 2 deletions dist/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 πŸ›:',
Expand Down
18 changes: 15 additions & 3 deletions src/__tests__/__snapshots__/lib.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ exports[`pretty release prettifyRelease Prettify the release note 2/: prettyRele
### Technical πŸ› :
### Technical πŸ‘¨β€πŸ”§:
### Tooling πŸ› :
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
8 changes: 6 additions & 2 deletions src/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 πŸ›:',
Expand Down

0 comments on commit 7220010

Please # to comment.