mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-14 04:56:26 +03:00
Accumulates conventional commits into a Release PR that bumps the version and updates CHANGELOG.md. Nothing is tagged until a human merges the Release PR. Co-authored-by: Jasper <jasper@magnus919.com>
18 lines
282 B
YAML
18 lines
282 B
YAML
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.GITHUB_TOKEN }}
|