chore: unified to For Maintainers #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: google-github-actions/release-please-action@v3 | |
| with: | |
| release-type: simple | |
| # if we are not at v1.0.0 yet, breaking changes do not need to add a new major version | |
| bump-minor-pre-major: true | |
| pull-request-title-pattern: "chore: ${scope} release${component} ${version}" |