Skip to content

Commit 7f75bd4

Browse files
fix: Clean up release-please configs after some experimentation
1 parent 570996b commit 7f75bd4

File tree

3 files changed

+27
-26
lines changed

3 files changed

+27
-26
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
env:
2828
HUSKY: 0 # Disable husky within CI/CD
2929
- uses: googleapis/release-please-action@v4
30+
id: release
3031
with:
3132
release-type: node
3233
token: ${{ secrets.GITHUB_TOKEN }}

.release-please-manifest.json

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,3 @@
11
{
2-
".": "1.1.7",
3-
"changelog-sections": [
4-
{ "type": "feat", "section": "Features" },
5-
{ "type": "fix", "section": "Bug Fixes" },
6-
{ "type": "perf", "section": "Performance Improvements" },
7-
{ "type": "revert", "section": "Reverts" },
8-
{ "type": "chore", "section": "Miscellaneous Chores" },
9-
{ "type": "docs", "section": "Documentation" },
10-
{ "type": "style", "section": "Styles" },
11-
{ "type": "refactor", "section": "Code Refactoring" },
12-
{ "type": "test", "section": "Tests", "hidden": true },
13-
{ "type": "build", "section": "Build System", "hidden": true },
14-
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
15-
]
2+
".": "1.1.6"
163
}

release-please-config.json

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
11
{
2-
"packages": {
3-
".": {
4-
"changelog-path": "CHANGELOG.md",
5-
"release-type": "node",
6-
"bump-minor-pre-major": false,
7-
"bump-patch-for-minor-pre-major": false,
8-
"draft": false,
9-
"prerelease": false
10-
}
11-
},
12-
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
13-
}
2+
"packages": {
3+
".": {
4+
"changelog-path": "CHANGELOG.md",
5+
"release-type": "node",
6+
"bump-minor-pre-major": false,
7+
"bump-patch-for-minor-pre-major": false,
8+
"draft": false,
9+
"prerelease": false,
10+
"changelog-sections": [
11+
{ "type": "feat", "section": "Features" },
12+
{ "type": "fix", "section": "Bug Fixes" },
13+
{ "type": "perf", "section": "Performance Improvements" },
14+
{ "type": "revert", "section": "Reverts" },
15+
{ "type": "chore", "section": "Miscellaneous Chores" },
16+
{ "type": "docs", "section": "Documentation" },
17+
{ "type": "style", "section": "Styles" },
18+
{ "type": "refactor", "section": "Code Refactoring" },
19+
{ "type": "test", "section": "Tests", "hidden": true },
20+
{ "type": "build", "section": "Build System", "hidden": true },
21+
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
22+
]
23+
}
24+
},
25+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
26+
}

0 commit comments

Comments
 (0)