Automatically generate beautiful changelogs from your GitHub releases using AI.
Watch how it works:
Consists of two main parts:
backend_api
: Core logic for AI-powered changelog generationcanvas
: Next.js frontend for displaying changelogs
- π€ AI-powered commit analysis and summarization
- π Automatic updates triggered by GitHub releases
- π± UI inspired by Cursor's changelog pageΛ
- π¨ Manual override capability for custom edits
- π Server-side rendering for optimal performance
-
We had to make a project where the AI changelog result was generated by AI but you need to have a manual intervention in case you want to change anything. (eg. a static image)
-
The worflow must be simple, for developers, both for generating the changelog and editing the frontend.
-
UI had to simple and easily changeable from source code. Nothing complex, should be as simple as editing a Readme like we edit docs page.
We have a python function that returns a changelog reponse (eg. through JSON) or an API.
- We can pass data through DB, and fetch it on website - Reduces scope of changing data manually
- Using github actions to fetch data from API and update frontend with ...maybe vercel weebhook - this is a complex flow, reduces scope of manual editing
- Use a readme to JSON converter or using MDX format, which is good for manual editing, but again poses problem for inconsistent structred responses from OpenAI API.
- All in all we needed is a solution that can generate changelog from LLMs + structured response + manual editing + frontend easy deployment + scope for adding more content in frontend.
The challenge with writing changelogs is twofold:
- Analyzing numerous commits between releases
- Summarizing changes in a user-friendly format
- Release Detection: Triggered automatically on new GitHub releases
- Commit Analysis: Fetches and analyzes commits between releases
- AI Processing: Generates structured changelog using OpenAI API
- Manual Override: Allows custom edits to the generated JSON
- Frontend Display: Renders beautiful, responsive changelog pages
-
Add the
backends_api
folder andchanelog.yml
in your repo. Make sure you write the proper path tomain.py
inchanelog.yml
-
Add ENVs in github, please refer to
.env.example
Repository Variables:
owner
: Repository owner namerepo
: Repository name
Environment Secrets:
OPENAI_API_KEY
: Your OpenAI API key- Additional configuration secrets as needed
Currently, all configurations are set as environment variables instead of repository variables for simplicity. This will be improved in future updates.
- Multiple Release Requirement: Currently requires at least 2 releases
- Duplicate Prevention: Manual triggering may create duplicate entries
- Rate Limiting: Subject to GitHub API and OpenAI API limits
- Delay: Expect little delay in frontend updates due to caching in Github CDNs, and frontend. (upto 5 mins)
- Single-release repository support
- Custom changelog templates
- Duplicate detection
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
- AI used is minimal, used tools -- perplexity for frontend research , design. Cursor for readme. I don't trust LLMs that much with code generation. π