From b91df79dedb650764e3cc6b85f9514b59298d52f Mon Sep 17 00:00:00 2001 From: Eugene Dementyev Date: Wed, 8 Apr 2026 15:40:12 +1200 Subject: [PATCH 1/2] Fix documentation --- README.md | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 46bf78d..b65aa4f 100644 --- a/README.md +++ b/README.md @@ -216,22 +216,23 @@ _Example3 (with breaking message):_ You can configure the action with various inputs, a list of which has been provided below: -| Name | Description | Default Value | -|------------------|-------------------------------------------------------------------------------------------------|---------------| -| tool-version | The version of the tool to run | latest | -| release-branch | The name of the master/main branch | master | -| dev-branch | The name of the development branch | dev | -| skip-prerelease | Skip prerelease part of the version. When true, release-branch and dev-branch are effectively ignored | false | -| minor-identifier | The string used to identify a minor release (wrap with '/' to match using a regular expression) | feature: | -| major-identifier | The string used to identify a major release (wrap with '/' to match using a regular expression) | breaking: | -| prefix | The prefix used for the version name | | -| log-paths | The paths used to calculate changes (comma-separated) | | +| Name | Description | Default Value | +| ---------------- | ----------------------------------------------------------------------------------------------------- | ------------- | +| tool-version | The version of the tool to run | latest | +| release-branch | The name of the master/main branch | master | +| dev-branch | The name of the development branch | dev | +| skip-prerelease | Skip prerelease part of the version. When true, release-branch and dev-branch are effectively ignored | false | +| minor-identifier | The string used to identify a minor release (wrap with '/' to match using a regular expression) | feature: | +| major-identifier | The string used to identify a major release (wrap with '/' to match using a regular expression) | breaking: | +| prefix | The prefix used for the version name | | +| log-path | The paths used to calculate changes (whitespace-separated) | | ## Requirements To use this tool you will need to install a few dependencies: Ubuntu: + ``` sudo apt-get install \ libevent-dev \ From 69431c015d0b40c0fb0f326d96aca15df228e61d Mon Sep 17 00:00:00 2001 From: Eugene Dementyev Date: Wed, 8 Apr 2026 16:03:34 +1200 Subject: [PATCH 2/2] Update README.md Co-authored-by: Jackie Weng <120340761+jackie-linz@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b65aa4f..8635732 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ You can configure the action with various inputs, a list of which has been provi | minor-identifier | The string used to identify a minor release (wrap with '/' to match using a regular expression) | feature: | | major-identifier | The string used to identify a major release (wrap with '/' to match using a regular expression) | breaking: | | prefix | The prefix used for the version name | | -| log-path | The paths used to calculate changes (whitespace-separated) | | +| log-paths | The paths used to calculate changes (whitespace-separated) | | ## Requirements