You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> This flows show how to automatically generate release notes from your GitHub commits when you create a release — without writing them manually every time!
4
+
5
+
## 🚀 What it will do?
6
+
7
+
- ✨ Whenever you push a tag like v1.1.0 to GitHub
8
+
- ⚡ It will automatically create a Release
9
+
- 🔒 It will auto-generate release notes based on commit messages and PR titles
10
+
11
+
12
+
## 🛠 Tech Stack
13
+
14
+
- Node.js
15
+
- Express
16
+
17
+
## 🎯 How you use it in your project
18
+
- Add this workflow under .github/workflows/release.yml
19
+
- Push a new Git tag
20
+
git tag v1.1.0
21
+
git push origin v1.1.0
22
+
(You can change v1.1.0 to whatever your new version is.)
23
+
- GitHub will automatically create a new Release with auto-generated notes!
0 commit comments