Skip to content

Commit aa65097

Browse files
committed
ci: modify dependabot configuration
1 parent 144f61e commit aa65097

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

.github/dependabot.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ updates:
3333
labels:
3434
- 'infra'
3535
commit-message:
36-
prefix: 'deps'
36+
prefix: 'devdeps'
37+
ignore:
38+
- dependency-name: '@types/node'
3739
groups:
3840
map-colonies:
3941
patterns:
@@ -47,6 +49,7 @@ updates:
4749
dev-patch:
4850
update-types:
4951
- patch
52+
- minor
5053

5154
# github deps
5255
- package-ecosystem: github-actions

.github/workflows/release-please.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,3 @@ jobs:
1919
# (PAT) and configured it as a GitHub action secret named
2020
# `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important).
2121
token: ${{ secrets.GH_PAT }}
22-
# this is a built-in strategy in release-please, see "Action Inputs"
23-
# for more options
24-
release-type: node

.release-please-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ ".": "1.1.0" }

release-please-config.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"release-type": "node",
4+
"packages": {
5+
".": {}
6+
},
7+
"changelog-sections": [
8+
{ "type": "feat", "section": "Features" },
9+
{ "type": "fix", "section": "Bug Fixes" },
10+
{ "type": "revert", "section": "Reverts" },
11+
{ "type": "helm", "section": "Helm Changes", "hidden": false },
12+
{ "type": "deps", "section": "Dependency Updates", "hidden": false },
13+
{ "type": "devdeps", "section": "Dev Dependency Updates", "hidden": true },
14+
{ "type": "refactor", "section": "Code Refactoring", "hidden": false },
15+
{ "type": "build", "section": "Build System", "hidden": false },
16+
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": true },
17+
{ "type": "docs", "section": "Documentation", "hidden": true },
18+
{ "type": "style", "section": "Styles", "hidden": true },
19+
{ "type": "test", "section": "Tests", "hidden": true },
20+
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
21+
]
22+
}

0 commit comments

Comments
 (0)