diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 1b3e5223f..f6c64cac5 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -13,12 +13,6 @@ jobs: release-please: runs-on: ubuntu-latest steps: - - uses: google-github-actions/release-please-action@v3 + - uses: google-github-actions/release-please-action@v4 with: - token: ${{ secrets.RELEASE_GH_TOKEN }} - release-type: python - package-name: "openhexa-app" - bump-minor-pre-major: true - bump-patch-for-minor-pre-major: false - include-v-in-tag: false - changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]' + token: ${{ secrets.RELEASE_GH_TOKEN }} \ No newline at end of file diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 000000000..8410357ac --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "release-type": "python", + "include-component-in-tag": false, + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": false, + "include-v-in-tag": false, + "changelog-type": "github", + "changelog-sections": [ + {"type":"feat","section":"Features","hidden":false}, + {"type":"fix","section":"Bug Fixes","hidden":false}, + {"type":"chore","section":"Miscellaneous","hidden":false} + ] +} \ No newline at end of file