Skip to content

Commit

Permalink
fix: add Documentation and Dependencies to release notes (#1014)
Browse files Browse the repository at this point in the history
Generate release notes with `Documentation` section from commits
prefixed with `docs:` and `Dependencies` from commits tagged with
`deps:` and `deps(dev):`.

Configure dependabot to add the `deps:` and `deps(dev):` prefixes.

Interested projects should run `npx aegir check-project` to get the
updated config.
  • Loading branch information
achingbrain committed Jul 7, 2022
1 parent d35ad08 commit df323ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/check-project/files/.github/dependabot.yml
Expand Up @@ -6,3 +6,6 @@ updates:
interval: daily
time: "10:00"
open-pull-requests-limit: 10
commit-message:
prefix: "deps"
prefix-development: "deps(dev)"
5 changes: 4 additions & 1 deletion src/check-project/semantic-release-config.js
Expand Up @@ -52,7 +52,10 @@ export const semanticReleaseConfig = (branchName) => {
section: 'Trivial Changes'
}, {
type: 'docs',
section: 'Trivial Changes'
section: 'Documentation'
}, {
type: 'deps',
section: 'Dependencies'
}, {
type: 'test',
section: 'Tests'
Expand Down

0 comments on commit df323ef

Please sign in to comment.