diff --git a/README.md b/README.md index cd97f9c..0175b06 100644 --- a/README.md +++ b/README.md @@ -181,6 +181,7 @@ The following are optional as `step.with` keys | `discussion_category_name` | String | If specified, a discussion of the specified category is created and linked to the release. The value must be a category that already exists in the repository. For more information, see ["Managing categories for discussions in your repository."](https://docs.github.com/en/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository) | | `generate_release_notes` | Boolean | Whether to automatically generate the name and body for this release. If name is specified, the specified name will be used; otherwise, a name will be automatically generated. If body is specified, the body will be pre-pended to the automatically generated notes. See the [GitHub docs for this feature](https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes) for more information | | `append_body` | Boolean | Append to existing body instead of overwriting it | +| `make_latest` | Boolean | Whether to mark the release as latest or not. This defaults to true. | 💡 When providing a `body` and `body_path` at the same time, `body_path` will be attempted first, then falling back on `body` if the path can not be read from. diff --git a/__tests__/util.test.ts b/__tests__/util.test.ts index 1e77c72..acdd18c 100644 --- a/__tests__/util.test.ts +++ b/__tests__/util.test.ts @@ -52,6 +52,7 @@ describe("util", () => { input_target_commitish: undefined, input_discussion_category_name: undefined, input_generate_release_notes: false, + input_make_latest: "true", }) ); }); @@ -72,6 +73,7 @@ describe("util", () => { input_target_commitish: undefined, input_discussion_category_name: undefined, input_generate_release_notes: false, + input_make_latest: "true", }) ); }); @@ -92,6 +94,7 @@ describe("util", () => { input_target_commitish: undefined, input_discussion_category_name: undefined, input_generate_release_notes: false, + input_make_latest: "true", }) ); }); @@ -125,6 +128,7 @@ describe("util", () => { input_target_commitish: undefined, input_discussion_category_name: undefined, input_generate_release_notes: false, + input_make_latest: "true" } ); }); @@ -150,6 +154,7 @@ describe("util", () => { input_target_commitish: "affa18ef97bc9db20076945705aba8c516139abd", input_discussion_category_name: undefined, input_generate_release_notes: false, + input_make_latest: "true" } ); }); @@ -174,6 +179,7 @@ describe("util", () => { input_target_commitish: undefined, input_discussion_category_name: "releases", input_generate_release_notes: false, + input_make_latest: "true" } ); }); @@ -199,6 +205,7 @@ describe("util", () => { input_target_commitish: undefined, input_discussion_category_name: undefined, input_generate_release_notes: true, + input_make_latest: "true" } ); }); @@ -227,6 +234,7 @@ describe("util", () => { input_target_commitish: undefined, input_discussion_category_name: undefined, input_generate_release_notes: false, + input_make_latest: "true" } ); }); @@ -253,6 +261,7 @@ describe("util", () => { input_target_commitish: undefined, input_discussion_category_name: undefined, input_generate_release_notes: false, + input_make_latest: "true" } ); }); @@ -278,9 +287,35 @@ describe("util", () => { input_target_commitish: undefined, input_discussion_category_name: undefined, input_generate_release_notes: false, + input_make_latest: "true" } ); }); + it('parses basic config where make_latest is passed', () => { + assert.deepStrictEqual( + parseConfig({ + INPUT_MAKE_LATEST: "false", + }), + { + github_ref: "", + github_repository: "", + github_token: "", + input_append_body: false, + input_body: undefined, + input_body_path: undefined, + input_draft: undefined, + input_prerelease: undefined, + input_files: [], + input_name: undefined, + input_tag_name: undefined, + input_fail_on_unmatched_files: false, + input_target_commitish: undefined, + input_discussion_category_name: undefined, + input_generate_release_notes: false, + input_make_latest: "false" + } + ); + }) it("parses basic config with append_body", () => { assert.deepStrictEqual( parseConfig({ @@ -302,6 +337,7 @@ describe("util", () => { input_target_commitish: undefined, input_discussion_category_name: undefined, input_generate_release_notes: false, + input_make_latest: "true" } ); });