diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5fb76a6..a633b18 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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' diff --git a/release-please-config.json b/release-please-config.json index a418e17..e730c7b 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -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 } ]