Skip to content

Commit

Permalink
chore: Added Release Please Config & Manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
usernane committed Nov 20, 2024
1 parent 6da66a3 commit 3b6273c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/php83.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ jobs:
- uses: actions/checkout@v4
- uses: google-github-actions/release-please-action@v3
with:
release-type: pre-release
release-type: php
config-file: release-please-config.json
manifest-file: release-please-manifest.json
token: ${{ secrets.GITHUB_TOKEN }}
release_prod:
needs:
Expand All @@ -141,6 +143,7 @@ jobs:
- uses: google-github-actions/release-please-action@v3
with:
release-type: php
config-file: release-please-config.json
token: ${{ secrets.GITHUB_TOKEN }}


21 changes: 21 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"packages":{
".":{
"changelog-path": "CHANGELOG.md",
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "feature", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "revert", "section": "Reverts" },
{ "type": "docs", "section": "Documentation" },
{ "type": "style", "section": "Styles" },
{ "type": "chore", "section": "Miscellaneous Chores" },
{ "type": "refactor", "section": "Code Refactoring" },
{ "type": "test", "section": "Tests" },
{ "type": "build", "section": "Build System" },
{ "type": "ci", "section": "Continuous Integration" }
]
}
}
}
4 changes: 4 additions & 0 deletions release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"version": "3.0.0-Beta.14",
"release-type": "pre-release"
}

0 comments on commit 3b6273c

Please sign in to comment.