diff --git a/doc/Developing/Merging-Pull-Requests.md b/doc/Developing/Merging-Pull-Requests.md index 2afa85f611..cc5fc27044 100644 --- a/doc/Developing/Merging-Pull-Requests.md +++ b/doc/Developing/Merging-Pull-Requests.md @@ -10,6 +10,7 @@ ensure you: - For the commit message prepend it with one of the following tags for the pull request to appear in the changelog: - devices: or newdevice: For new device support. - feature: or feat: To indicate this is a new or updated feature + - webui: or web: To indicate this is an update to the WebUI - fix: or bugfix: To show this is a bug fix. - refactoring: or refactor: When the changes are refactoring a large portion of code - You can reference an issue number with `#xyz`, i.e `#1234` diff --git a/readmegen.yml b/readmegen.yml index c96b7de6f7..b363ae5808 100644 --- a/readmegen.yml +++ b/readmegen.yml @@ -4,15 +4,18 @@ issue_tracker_pattern: https://github.com/librenms/librenms/issues/\1 break: "## Changelog" output_file_name: "doc/General/Changelog.md" message_groups: - Devices: - - devices - - newdevice - Features: - - feature - - feat Bugfixes: - fix - bugfix + Devices: + - devices + - newdevice + WebUI: + - webui + - web + Features: + - feature + - feat Documentation: - docs - doc