Skip to content

Commit

Permalink
fix: change release please config (#430)
Browse files Browse the repository at this point in the history
* fix: change release please config

* chore: update config, hide chores

* chore: test not updating peer deps

* chore: test different strategy

* chore: add group PR title pattern

* chore: test peer deps

* chore: update to packages

* chore: remove node-workspace plugin

* chore: update manifest.json

* chore: remove linked-versions plugin

* chore: add back linked versions plugin, test different config for title

* chore: test remove title pattern

* chore: remove linked-

* chore: typo
  • Loading branch information
daine authored Feb 15, 2024
1 parent 67b0a58 commit 4454570
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
".": "0.18.1"
"packages/angular": "0.18.1",
"packages/react": "0.18.1",
"packages/web": "0.18.1"
}
50 changes: 42 additions & 8 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
{
"bootstrap-sha": "5445327dd19538ff79ab6f981ac36ea262423049",
"last-release-sha": "7c5725a33d1dcbd210a9b2e07382ffcb675d3eb1",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false,
"group-pull-request-title-pattern": "chore: GCDS Components Release ${version}",
"pull-request-title-pattern": "chore: GCDS Components Release ${version}",
"include-component-in-tag": true,
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false,
"pull-request-title-pattern": "chore: GCDS Components Release v${version}"
"packages/angular": {
"component": "gcds-components-angular",
"changelog-path": ""
},
"packages/react": {
"component": "gcds-components-react",
"changelog-path": ""

},
"packages/web": {
"component": "gcds-components",
"changelog-path": ""
}
},
"changelog-sections": [
Expand All @@ -18,11 +31,32 @@
{ "type": "revert", "section": "Reverts", "hidden": true },
{ "type": "docs", "section": "Documentation" },
{ "type": "style", "section": "Styles" },
{ "type": "chore", "section": "Patch" },
{ "type": "chore", "section": "Patch", "hidden": true },
{ "type": "refactor", "section": "Code Refactoring" },
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "build", "section": "Build System", "hidden": true },
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
],
"release-type": "node",
"plugins": [
{
"type": "linked-versions",
"groupName": "GCDS Components",
"components": [
"gcds-components-angular",
"gcds-components-react",
"gcds-components"
]
},
{
"type": "group-priority",
"groups": [
"gcds-components",
"gcds-components-angular",
"gcds-components-react"

]
}
],
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}

0 comments on commit 4454570

Please sign in to comment.