Skip to content

Commit

Permalink
chore: configure release please
Browse files Browse the repository at this point in the history
  • Loading branch information
razonyang committed Mar 9, 2024
1 parent e3ad444 commit 2ef3f46
Show file tree
Hide file tree
Showing 3 changed files with 47 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@v3
with:
command: manifest
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.0"
}
26 changes: 26 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"$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"
]
}
}
}

0 comments on commit 2ef3f46

Please sign in to comment.