chore(deps): update github actions (major) (#60) #5
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 | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Maintains a rolling release PR: parses Conventional Commit messages from | |
| # squash-merged PRs, updates CHANGELOG.md and the plugin.php version header, | |
| # and on merge creates the git tag + GitHub Release. Packagist picks up the | |
| # new tag via the existing GitHub webhook. | |
| - uses: googleapis/release-please-action@v5 | |
| with: | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json |