Skip to content

Commit 3b6273c

Browse files
committed
chore: Added Release Please Config & Manifest
1 parent 6da66a3 commit 3b6273c

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

.github/workflows/php83.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ jobs:
128128
- uses: actions/checkout@v4
129129
- uses: google-github-actions/release-please-action@v3
130130
with:
131-
release-type: pre-release
131+
release-type: php
132+
config-file: release-please-config.json
133+
manifest-file: release-please-manifest.json
132134
token: ${{ secrets.GITHUB_TOKEN }}
133135
release_prod:
134136
needs:
@@ -141,6 +143,7 @@ jobs:
141143
- uses: google-github-actions/release-please-action@v3
142144
with:
143145
release-type: php
146+
config-file: release-please-config.json
144147
token: ${{ secrets.GITHUB_TOKEN }}
145148

146149

release-please-config.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"packages":{
3+
".":{
4+
"changelog-path": "CHANGELOG.md",
5+
"changelog-sections": [
6+
{ "type": "feat", "section": "Features" },
7+
{ "type": "feature", "section": "Features" },
8+
{ "type": "fix", "section": "Bug Fixes" },
9+
{ "type": "perf", "section": "Performance Improvements" },
10+
{ "type": "revert", "section": "Reverts" },
11+
{ "type": "docs", "section": "Documentation" },
12+
{ "type": "style", "section": "Styles" },
13+
{ "type": "chore", "section": "Miscellaneous Chores" },
14+
{ "type": "refactor", "section": "Code Refactoring" },
15+
{ "type": "test", "section": "Tests" },
16+
{ "type": "build", "section": "Build System" },
17+
{ "type": "ci", "section": "Continuous Integration" }
18+
]
19+
}
20+
}
21+
}

release-please-manifest.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"version": "3.0.0-Beta.14",
3+
"release-type": "pre-release"
4+
}

0 commit comments

Comments
 (0)