diff --git a/.github/workflows/php83.yml b/.github/workflows/php83.yml index a45956c1..df79e613 100644 --- a/.github/workflows/php83.yml +++ b/.github/workflows/php83.yml @@ -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: @@ -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 }} diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 00000000..f29e0dd3 --- /dev/null +++ b/release-please-config.json @@ -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" } + ] + } + } +} \ No newline at end of file diff --git a/release-please-manifest.json b/release-please-manifest.json new file mode 100644 index 00000000..d4dd4c87 --- /dev/null +++ b/release-please-manifest.json @@ -0,0 +1,4 @@ +{ + "version": "3.0.0-Beta.14", + "release-type": "pre-release" +}