Skip to content

Commit

Permalink
chore: configure release please
Browse files Browse the repository at this point in the history
razonyang committed Feb 3, 2024
1 parent c8a3b87 commit 7bd04ec
Showing 3 changed files with 51 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

name: release-please

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4
with:
command: manifest
4 changes: 4 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
".": "0.1.1",
"modules/abbr": "0.0.1"
}
29 changes: 29 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"monorepo-tags": true,
"release-type": "go",
"tag-separator": "/",
"changelog-sections": [
{ "type": "BREAKING CHANGE", "section": "BREAKING CHANGES 💥"},
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": true },
{ "type": "ci", "section": "Continuous Integration" },
{ "type": "docs", "section": "Documentation 📝" },
{ "type": "feat", "section": "Features ✨" },
{ "type": "feature", "section": "Features ✨" },
{ "type": "fix", "section": "Bug Fixes 🐞" },
{ "type": "perf", "section": "Performance Improvements ⚡️" },
{ "type": "style", "section": "Styles 🎨" }
],
"packages": {
".": {
"exclude-paths": [
".release-please-manifest.json",
"modules",
"release-please-config.json"
]
},
"modules/abbr": {
"component": "modules/abbr"
}
}
}

0 comments on commit 7bd04ec

Please sign in to comment.