Skip to content

Commit 8d2bc87

Browse files
committed
ci: add release workflow
1 parent a46a9d7 commit 8d2bc87

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.github/workflows/release.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
permissions:
8+
contents: write
9+
pull-requests: write
10+
11+
jobs:
12+
release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: googleapis/release-please-action@v4
16+
with:
17+
config-file: release-please-config.json

.release-please-manifest.json

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
}

release-please-config.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"bootstrap-sha": "fe728980b0bd4cd46b5da158c05c193e4a7d0ab9",
4+
"plugins": [ "sentence-case" ],
5+
"skip-github-release": true,
6+
"packages": {
7+
".": {
8+
"release-type": "php",
9+
"pull-request-title-pattern": "chore: release ${version}",
10+
"changelog-sections": [
11+
{ "type" :"feat", "section" :"Features", "hidden": false },
12+
{ "type":"fix", "section": "Bug Fixes", "hidden": false },
13+
{ "type":"chore", "section": "Miscellaneous" ,"hidden":true }
14+
]
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)