Skip to content

Commit a1ed9a5

Browse files
committed
ci(release-please): upgrade to v4
1 parent 8cfd06f commit a1ed9a5

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"include-component-in-tag": false,
4+
"packages": {
5+
".": {
6+
"changelog-path": "CHANGELOG.md",
7+
"changelog-sections": [
8+
{ "type": "feat", "section": "Features", "hidden": false },
9+
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
10+
{ "type": "chore", "section": "Miscellaneous Changes", "hidden": false }
11+
],
12+
"release-type": "node"
13+
}
14+
},
15+
"skip-github-release": true
16+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "2.1.0"
3+
}

.github/workflows/release-please.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,18 @@ on:
55
branches:
66
- master
77

8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
812
jobs:
913
release-please:
1014
runs-on: ubuntu-latest
1115
steps:
1216
- name: Release-please check
1317
id: release
14-
uses: google-github-actions/release-please-action@v3
18+
uses: googleapis/release-please-action@v4
1519
with:
1620
token: ${{ secrets.GITHUB_TOKEN }}
17-
release-type: node
18-
skip-github-release: true
19-
changelog-path: CHANGELOG.md
20-
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous Changes","hidden":false}]'
21+
config-file: .github/release-please/.release-please-config.json
22+
manifest-file: .github/release-please/.release-please-manifest.json

0 commit comments

Comments
 (0)