From 5f55df31e10e67a2ef62ea8f3fa1b926cee6f8b1 Mon Sep 17 00:00:00 2001 From: Nick Cipollo Date: Sat, 6 Dec 2025 11:05:53 -0500 Subject: [PATCH] Fixes #552 Add missing readme entry for generateReleaseNotesPreviousTag --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f9b4b4a..b35ee51 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ This action will create a GitHub release and optionally upload an artifact to it | discussionCategory | When provided this will generate a discussion of the specified category. The category must exist otherwise this will cause the action to fail. This isn't used with draft releases. The default "Announcements" category is not supported via the API and will cause an error if used here. | false | "" | | draft | Optionally marks this release as a draft release. Set to true to enable. | false | "" | | generateReleaseNotes | Indicates if release notes should be automatically generated. | false | false | +| generateReleaseNotesPreviousTag | An optional previous tag to use when generating release notes. This will limit the release notes to changes between the two tags. | false | "" | | immutableCreate | Indicates if immutable release creation should be used. When enabled, the action will first create a draft, upload artifacts, then publish the release. | false | false | | makeLatest | Indicates if the release should be the "latest" release or not. legacy specifies that the latest release should be determined based on the release creation date and higher semantic version. | false | "legacy" | | name | An optional name for the release. If this is omitted the tag will be used. | false | "" |