Skip to content

Commit 19f6f35

Browse files
chore(ci): hide debugger changes in main changelog (#288)
release-please's `exclude-paths` setting makes it so that changes to those paths don't trigger a release for the given package. Unfortunately, it doesn't make it so changes aren't added to the changelog. So instead, let's hide changes scoped to `debugger`. We can, as it turns out, always edit the changelog in the release PR, so this doesn't have to be 100% foolproof.
1 parent 95b0593 commit 19f6f35

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

release-please-config.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,14 @@
88
".": {
99
"package-name": "starlingmonkey",
1010
"release-type": "simple",
11-
"exclude-paths": ["debugger/vscode-dap-extension/**"]
11+
"exclude-paths": ["debugger/vscode-dap-extension/**"],
12+
"changelog-sections": [
13+
{ "type": "feat", "section": "Features" },
14+
{ "type": "fix", "section": "Bug Fixes" },
15+
{ "type": "feat", "scope": "debugger", "hidden": true },
16+
{ "type": "fix", "scope": "debugger", "hidden": true },
17+
{ "type": "chore", "scope": "debugger", "hidden": true }
18+
]
1219
},
1320
"debugger/vscode-dap-extension": {
1421
"package-name": "starlingmonkey-debugger",

0 commit comments

Comments
 (0)