auto-changelog-generator
is a tool for generating changelogs automatically from GitHub issues and pull requests.
- Fetches issues and pull requests from GitHub.
- Generates markdown formatted changelogs.
- Supports filtering by labels and milestones.
npm install auto-changelog-generator
import createMarkdownText from "auto-changelog-generator";
const options = {
githubToken: GITHUB_TOKEN,
repoOwner: REPO_OWNER,
repoName: REPO_NAME,
}
createMarkdownText(options).then((text) => console.log(text));
Feel free to open issues or submit pull requests for enhancements and bug fixes.
This project is licensed under the MIT License. See the LICENSE file for details.
For more details, visit the npm package page.