Skip to content

Commit

Permalink
Merge pull request #189 from toolmantim/string-quote-example-config-s…
Browse files Browse the repository at this point in the history
…tring-values

String quote example config string values
  • Loading branch information
toolmantim committed Apr 26, 2019
2 parents 53e9053 + 45c1875 commit ea45e8e
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ As pull requests are merged, a draft release is kept up-to-date listing the chan
The following is a more complicated configuration, which categorises the changes into headings, and automatically suggests the next version number:

```yml
name-template: v$NEXT_PATCH_VERSION 🌈
tag-template: v$NEXT_PATCH_VERSION
name-template: 'v$NEXT_PATCH_VERSION 🌈'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
- title: 🚀 Features
label: feature
- title: 🐛 Bug Fixes
label: fix
- title: 🧰 Maintenance
label: chore
- title: '🚀 Features'
label: 'feature'
- title: '🐛 Bug Fixes'
label: 'fix'
- title: '🧰 Maintenance'
label: 'chore'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
## Changes
Expand Down Expand Up @@ -115,10 +115,10 @@ With the `categories` option you can categorize pull requests in release notes u

```yml
categories:
- title: 🚀 Features
label: feature
- title: 🐛 Bug Fixes
label: fix
- title: '🚀 Features'
label: 'feature'
- title: '🐛 Bug Fixes'
label: 'fix'
```

Pull requests with the label "feature" or "fix" will now be grouped together:
Expand All @@ -133,7 +133,7 @@ With the `exclude-labels` option you can exclude pull requests from the release

```yml
exclude-labels:
- skip-changelog
- 'skip-changelog'
```

Pull requests with the label "skip-changelog" will now be excluded from the release draft.
Expand Down

0 comments on commit ea45e8e

Please sign in to comment.