Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karniv00l/git-summit
Your AI-powered, release note-writing, changelog-managing, version-bumping superhero!
https://github.com/karniv00l/git-summit
ai changelog chatgpt cli openai release release-notes-generator
Last synced: 3 months ago
JSON representation
Your AI-powered, release note-writing, changelog-managing, version-bumping superhero!
- Host: GitHub
- URL: https://github.com/karniv00l/git-summit
- Owner: karniv00l
- License: mit
- Created: 2024-08-25T11:15:32.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-09-23T15:28:18.000Z (3 months ago)
- Last Synced: 2024-09-27T22:02:56.606Z (3 months ago)
- Topics: ai, changelog, chatgpt, cli, openai, release, release-notes-generator
- Language: TypeScript
- Homepage:
- Size: 67.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitSummit π’
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
## Overview
Welcome to **GitSummit** β your AI-powered, release note-writing, changelog-managing, version-bumping superhero! π¦ΈββοΈ No more slaving over tedious release notes or worrying about how to summarize all those commits. GitSummit does the heavy lifting for you, leveraging the incredible powers of OpenAI to turn your commit messages into clear, concise, and even fun release notes β all while following the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format. π
## Features
- **AI-Powered Summaries**: Let OpenAI do the talking β literally! It turns your commits into easy-to-read release notes faster than you can say "merge conflict." π€
- **Automatic Version Bumping**: Major, minor, or patch? GitSummit handles version bumps like a pro. π
- **Customizable Output**: Add a splash of fun, sprinkle in some emojis, or throw in some extra context. Your release notes, your style! π¨
- **Changelog Management**: Automatically updates your `CHANGELOG.md` so you can focus on coding, not documenting. π## Installation
Ready to give **GitSummit** a go? Hereβs how to get started:
First, add this repository as a submodule to your project (GitSummit likes to be close to the action):
```bash
cd /path/to/your/project
git submodule add https://github.com/karniv00l/git-summit.git
```Now, let's install the required Node.js version (because GitSummit likes its tools sharp and up-to-date):
```bash
cd git-summit
nvm install
# or using volta
volta install node
```Install the required dependencies and head back to your project root:
```bash
npm i && cd ../
```Set OpenAI API key:
```bash
export OPENAI_API_KEY="your-api-key"
```Now youβre ready to roll! π
## Usage
Let GitSummit work its magic: β¨
- It will look at the latest git **tag** (must be in proper semver format) and whip up some dazzling release notes for everything thatβs happened since. π
- Your freshly minted release notes will land in `RELEASE.md`, while `CHANGELOG.md` will be updated like clockwork. π```bash
npx ts-node ./git-summit/git-summit.ts
--changelog CHANGELOG.md \
--output RELEASE.md \
--bump minor \
--fun \
--emoji \
--summary \
--dry-run \
--context "Company name is Acme Inc., app name is SuperApp"
```