Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A simple demo to show how to automatically create Release Notes whenever we create a tag and push to main branch

NotificationsYou must be signed in to change notification settings

rupachowrasia/create-release-note-using-github-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This flows show how to automatically generate release notes from your GitHub commits when you create a release — without writing them manually every time!

🚀 What it will do?

  • Whenever you push a tag like v1.1.0 to GitHub
  • It will automatically create a Release
  • It will auto-generate release notes based on commit messages and PR titles

🛠 Tech Stack

  • Node.js
  • Express

🎯 How you use it in your project

  • Add the workflow under .github/workflows/release.yml (code is in github, can copy that)
  • Push a new Git tag
git tag v1.1.0git push origin v1.1.0

(You can change v1.1.0 to whatever your new version is)

  • GitHub will automatically create a new Release with auto-generated notes!

📦 Installation

# Clone the repogit clone https://github.com/rupachowrasia/create-release-note-using-github-action.git# Move into the project directorycd create-release-note-using-github-action# Install dependenciesnpm install# Run the appnpm run start# Run the following, it should trigger the workflowgit commit -am"chore: prepare sample release v1.1.0" \&& git tag v1.1.0 \&& git push origin main --tags

🧭 How to view Releases in your GitHub repository

📢 Tips

  • Manual/Draft Release: You can manually create a draft release even without pushing a tag!
  • Auto Release: If using GitHub Action like we set, it will auto-create a Release when you push a new tag!

About

A simple demo to show how to automatically create Release Notes whenever we create a tag and push to main branch

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp