diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 0000000..2b1b031 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,16 @@ +name: Release Please +on: + push: + branches: + - main +permissions: + contents: write + pull-requests: write +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: googleapis/release-please-action@v4 + with: + token: ${{ secrets.RELEASE_PLEASE_TOKEN }} + release-type: simple diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..effa475 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,17 @@ +{ + ".": "0.1.0", + "changelog-sections": [ + { "type": "build", "section": "Build System" }, + { "type": "chore", "section": "Miscellaneous Chores" }, + { "type": "ci", "section": "Continuous Integration" }, + { "type": "docs", "section": "Documentation" }, + { "type": "feat", "section": "Features" }, + { "type": "feature", "section": "Features" }, + { "type": "fix", "section": "Bug Fixes" }, + { "type": "perf", "section": "Performance Improvements" }, + { "type": "refactor", "section": "Code Refactoring" }, + { "type": "revert", "section": "Reverts" }, + { "type": "style", "section": "Styles" }, + { "type": "test", "section": "Tests" } + ] +}