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
The push command adds a new change entry to the Unreleased section of a changelog file. It automatically creates the necessary type-of-change section (Added, Changed, Fixed, etc.) if it doesn't exist.
Usage examples
CLI
$ heylogs push [changelog-file] -y <type> -m "<message>"# Add a new feature to Unreleased
heylogs push -y added -m "Add support for custom themes"# Fix a bug
heylogs push CHANGELOG.md -y fixed -m "Fix memory leak in parser"# Add a security fix with issue reference
heylogs push -y security -m "Fix XSS vulnerability [#456](https://github.com/user/repo/issues/456)"# Deprecate a feature
heylogs push -y deprecated -m "Deprecate legacy API endpoints"