Skip to content

Commit

Permalink
docs: add separate changelog section for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dschach committed Nov 7, 2023
1 parent 0181506 commit ed13712
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
19 changes: 17 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,31 @@
version: 2
updates:
- package-ecosystem: 'npm' # See documentation for possible values
allow:
- dependency-type: 'development'
directory: '/' # Location of package manifests
commit-message:
prefix: 'build'
#prefix: 'build'
prefix: 'build(npm)'
#include: 'scope'
rebase-strategy: 'auto'
schedule:
interval: 'daily'
- package-ecosystem: 'npm' # See documentation for possible values
allow:
- dependency-type: 'production'
directory: '/' # Location of package manifests
commit-message:
prefix: 'deps(npm)'
rebase-strategy: 'auto'
schedule:
interval: 'daily'
- package-ecosystem: 'github-actions' # See documentation for possible values
directory: '/' # Location of package manifests
commit-message:
prefix: 'ci(actions)'
#prefix: 'ci'
prefix: 'ci(github-actions)'
#include: 'scope'
rebase-strategy: 'auto'
schedule:
interval: 'daily'
7 changes: 4 additions & 3 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@
"changelog-sections": [
{ "type": "feat", "section": "Features", "hidden": false },
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
{ "type": "test", "section": "Tests", "hidden": false },
{ "type": "perf", "section": "Performance Improvements", "hidden": false },
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": false },
{ "type": "revert", "section": "Reverts", "hidden": false },
{ "type": "refactor", "section": "Code Refactoring", "hidden": false },
{ "type": "style", "section": "Styles", "hidden": false },
{ "type": "docs", "section": "Documentation", "hidden": false },
{ "type": "perf", "section": "Performance Improvements", "hidden": false },
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "revert", "section": "Reverts", "hidden": false },
{ "type": "deps", "section": "Dependencies", "hidden": false },
{ "type": "build", "section": "Build System", "hidden": false },
{ "type": "ci", "section": "Continuous Integration", "hidden": false }
]
Expand Down

0 comments on commit ed13712

Please sign in to comment.