Skip to content

Commit cd1b7a2

Browse files
committed
chore(cd): setup release-please
1 parent 6b4b8ea commit cd1b7a2

3 files changed

Lines changed: 35 additions & 0 deletions

File tree

.github/release-please.config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"pull-request-title-pattern": ":sparkles: release: v${version}",
4+
"pull-request-header": ":sparkles: Changes about to get deployed on the next release ! :sparkles:",
5+
"packages": {
6+
".": {
7+
"include-component-in-tag": false,
8+
"release-type": "node"
9+
}
10+
}
11+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "4.1.5"
3+
}

.github/workflows/release-pr.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: release-pr
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
permissions:
9+
contents: write
10+
issues: write
11+
pull-requests: write
12+
13+
jobs:
14+
release-pr:
15+
name: Maintain Release PR
16+
runs-on: ubuntu-24.04
17+
steps:
18+
- uses: googleapis/release-please-action@v4
19+
with:
20+
config-file: .github/release-please.config.json
21+
manifest-file: .github/release-please.manifest.json

0 commit comments

Comments
 (0)