Better than auto-publish when review matters.
Fully automated tools are great when you want releases to ship themselves. SAVR is for teams that want the release prepared continuously but still want a human to decide when it goes live.
REVIEWEDSAVR updates release notes on every push so your team can publish manually from the GitHub Releases page when ready.
Fully automated tools are great when you want releases to ship themselves. SAVR is for teams that want the release prepared continuously but still want a human to decide when it goes live.
REVIEWEDSome teams keep manual control by triggering a release workflow. SAVR removes that extra step by keeping the release draft ready inside GitHub itself.
ZERO FRICTIONSAVR focuses on release preparation. It does not try to own package publishing, changelog files, or every release concern in your CI pipeline.
FOCUSEDworkflow_dispatch release process
name: Release draft
on:
push:
branches: [main]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: 21stdigital/savr-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}