Merge pull request #29 from keyqcloud/chore/release-please-config-fix #2
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-please | |
| # Watches master for conventional commits and opens a "Release PR" with | |
| # version bump + CHANGELOG entry whenever shippable changes have landed. | |
| # Merging that PR creates a tag, which triggers .github/workflows/deploy.yml | |
| # (build → S3 → CloudFront → GitHub Release). | |
| # | |
| # Conventional commit reference: | |
| # feat: minor bump (1.4.0 → 1.5.0) | |
| # fix: patch bump (1.4.0 → 1.4.1) | |
| # feat!: / BREAKING CHANGE: major bump (1.4.0 → 2.0.0) | |
| # docs:, ci:, chore:, test:, refactor: no version bump on their own | |
| # | |
| # See CONTRIBUTING.md for the full convention. | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| with: | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json |