Skip to content

Commit

Permalink
ci: Generate config for release-please (#127)
Browse files Browse the repository at this point in the history
ci: generate config for release-please
  • Loading branch information
netr0m authored Jul 4, 2024
1 parent 3051f10 commit 9318d64
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ jobs:
- uses: googleapis/release-please-action@v4
id: release
with:
release-type: python
target-branch: main
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
outputs:
release_created: ${{ steps.release.outputs.release_created }}
Expand Down
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.1.2"
}
72 changes: 72 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"release-type": "python",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": false,
"pull-request-title-pattern": "chore${scope}: Release${component} ${version}",
"pull-request-header": "Release-Please: Completor Release",
"changelog-sections": [
{
"type": "feat",
"section": "✨ Features",
"hidden": false
},
{
"type": "fix",
"section": "🐛 Bug Fixes",
"hidden": false
},
{
"type": "chore",
"section": "🧹 Chores",
"hidden": false
},
{
"type": "docs",
"section": "📝 Documentation",
"hidden": false
},
{
"type": "build",
"section": "📦 Build System",
"hidden": true
},
{
"type": "ci",
"section": "👷 Continuous Integration",
"hidden": true
},
{
"type": "perf",
"section": "⚡️ Performance Improvements",
"hidden": true
},
{
"type": "refactor",
"section": "♻️ Code Refactoring",
"hidden": true
},
{
"type": "revert",
"section": "⏪️ Reverts",
"hidden": true
},
{
"type": "style",
"section": "💄 Styles",
"hidden": true
},
{
"type": "test",
"section": "🧪 Tests",
"hidden": true
}
],
"draft": false,
"prerelease": false
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}

0 comments on commit 9318d64

Please sign in to comment.