Skip to content

Commit

Permalink
refactor(release-please): handle new version
Browse files Browse the repository at this point in the history
  • Loading branch information
bdronneau committed Dec 11, 2023
1 parent 080a9f2 commit 0251bf2
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 20 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,3 @@ jobs:
- uses: google-github-actions/release-please-action@v4
with:
token: ${{ secrets.RELEASE_PLEASE }}
release-type: go
changelog-sections: |
[
{"type":"feat","section":"🚀 Features","hidden":false},
{"type":"change","section":"🚀 Features","hidden":false},
{"type":"deprecate","section":"⚠️ Changes","hidden":false},
{"type":"remove","section":"⚠️ Changes","hidden":false},
{"type":"fix","section":"🐞 Bug Fixes","hidden":false},
{"type":"revert","section":"🐞 Bug Fixes","hidden":false},
{"type":"security","section":"🐞 Bug Fixes","hidden":false},
{"type":"perf","section":"✨ Polish","hidden":false},
{"type":"refactor","section":"🛠️ Refactor","hidden":false},
{"type":"style","section":"✨ Polish","hidden":false},
{"type":"build","section":"🧰 Other","hidden":false},
{"type":"chore","section":"🧰 Other","hidden":false},
{"type":"deps","section":"🧰 Other","hidden":true},
{"type":"ci","section":"🧰 Other","hidden":true},
{"type":"test","section":"🧪 Tests","hidden":false},
{"type":"docs","section":"📚 Documentation","hidden":false}
]
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "1.5.0"
}
31 changes: 31 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"release-type": "go",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false,
"changelog-sections": [
{"type":"feat","section":"🚀 Features","hidden":false},
{"type":"change","section":"🚀 Features","hidden":false},
{"type":"deprecate","section":"⚠️ Changes","hidden":false},
{"type":"remove","section":"⚠️ Changes","hidden":false},
{"type":"fix","section":"🐞 Bug Fixes","hidden":false},
{"type":"revert","section":"🐞 Bug Fixes","hidden":false},
{"type":"security","section":"🐞 Bug Fixes","hidden":false},
{"type":"perf","section":"✨ Polish","hidden":false},
{"type":"refactor","section":"🛠️ Refactor","hidden":false},
{"type":"style","section":"✨ Polish","hidden":false},
{"type":"build","section":"🧰 Other","hidden":false},
{"type":"chore","section":"🧰 Other","hidden":false},
{"type":"deps","section":"🧰 Other","hidden":true},
{"type":"ci","section":"🧰 Other","hidden":true},
{"type":"test","section":"🧪 Tests","hidden":false},
{"type":"docs","section":"📚 Documentation","hidden":false}
]
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}

0 comments on commit 0251bf2

Please sign in to comment.