Skip to main content
Getting Started

Quickstart

Generate your first release notes in under 5 minutes.

1. Initialize

releasejet init

The wizard detects your provider from git remote, asks for your categories, and writes .releasejet.yml.

2. Set your token

export RELEASEJET_TOKEN=<your-token>

GitLab tokens need api scope; GitHub tokens need repo scope.

3. Preview notes for a tag

releasejet generate --tag v1.0.0

ReleaseJet finds the previous tag, fetches issues closed between the two, categorizes them, and prints markdown to stdout.

4. Publish

releasejet generate --tag v1.0.0 --publish

This creates a release object on GitLab/GitHub with the generated notes attached.

Next