Skip to content

Commit 2e5751c

Browse files
committed
chore: configure release please
1 parent 1045f5b commit 2e5751c

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

.github/workflows/release-please.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
name: release-please
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: google-github-actions/release-please-action@v3
17+
with:
18+
command: manifest

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.1.0"
3+
}

release-please-config.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"$schema": "https://raw.github.com/googleapis/release-please/main/schemas/config.json",
3+
"monorepo-tags": true,
4+
"release-type": "go",
5+
"tag-separator": "/",
6+
"changelog-sections": [
7+
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": true },
8+
{ "type": "ci", "section": "Continuous Integration" },
9+
{ "type": "docs", "section": "Documentation 📝" },
10+
{ "type": "feat", "section": "Features ✨" },
11+
{ "type": "feature", "section": "Features ✨" },
12+
{ "type": "fix", "section": "Bug Fixes 🐞" },
13+
{ "type": "perf", "section": "Performance Improvements ⚡️" },
14+
{ "type": "style", "section": "Styles 🎨" }
15+
],
16+
"packages": {
17+
".": {
18+
"exclude-paths": [
19+
],
20+
"separate-pull-requests": true
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)