From 5416e7dc6ab03b8a85a6bb21a8443d16aa22dc0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20H=C3=B6ffner?= Date: Tue, 6 Aug 2024 10:23:23 +0200 Subject: [PATCH] improve mode documentation in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c56d880..cafe436 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ Depending on the use-case additional settings can be provided to the action | `fetchReviewers` | Will enable fetching the users/reviewers who approved the PR. Default: false | | `fetchReleaseInformation` | Will enable fetching additional release information from tags. Default: false | | `fetchReviews` | Will enable fetching the reviews on of the PR. Default: false | -| `mode` | 'Defines the mode used to retrieve the information. Available options: [`PR`, `COMMIT`, `HYBRID`]. Defaults to `PR`.' Hybrid mode treats commits like pull requests. Note: the commit or hybrid modes are not fully supported. Commit mode is a special configuration for projects which work without PRs. Uses commit messages as changelog. This mode looses access to information only available for PRs. Formerly set as `commitMode: true`, this setting is now deprecated and should be converted to `mode: "COMMIT"`. | +| `mode` | Defines the mode used to retrieve the information. Available options: [`PR`, `COMMIT`, `HYBRID`]. Defaults to `PR`. Hybrid mode treats commits like pull requests. Commit mode is a special configuration for projects which work without PRs. Uses commit messages as changelog. This mode looses access to information only available for PRs. Formerly set as `commitMode: true`, this setting is now deprecated and should be converted to `mode: "COMMIT"`. Note: the commit or hybrid modes are not fully supported. | | `exportCache` | Will enable exporting the fetched PR information to a cache, which can be re-used by later runs. Default: false | | `exportOnly` | When enabled, will result in only exporting the cache, without generating a changelog. Default: false (Requires `exportCache` to be enabled) | | `cache` | The file path to write/read the cache to/from. |