Skip to content

Commit abbfd62

Browse files
committed
chore: configure release please
1 parent aa3a508 commit abbfd62

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-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@v4
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.1"
3+
}

release-please-config.json

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

0 commit comments

Comments
 (0)