release-please #19
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 | |
| # No `push` trigger, deliberately (fleet git/PR-friction sweep, 2026-07-26): | |
| # per-push release PRs self-merged all day and kept moving main's tip, which | |
| # made every open PR go stale between fetch and merge. One daily cron cut | |
| # (plus manual dispatch for urgent releases) keeps versioning identical — | |
| # release-please accumulates the conventional commits since the last release. | |
| # Reverting is one line: put `push: {branches: [main]}` back under `on:`. | |
| # (Template repo: every repo created from this inherits the daily cadence.) | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '17 6 * * *' | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@v5 | |
| with: | |
| # release-type auto-detected from release-please-config.json | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json |