Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for make_latest property #304

Merged
merged 10 commits into from
Mar 8, 2024
Prev Previous commit
Next Next commit
Keep default behaviour the same by defaulting to true for make_latest.
  • Loading branch information
samueljseay committed Jan 12, 2023
commit 4c0e20a554cade260236bf5c0d913f4185556561
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const parseConfig = (env: Env): Config => {
env.INPUT_DISCUSSION_CATEGORY_NAME || undefined,
input_generate_release_notes: env.INPUT_GENERATE_RELEASE_NOTES == "true",
input_append_body: env.INPUT_APPEND_BODY == "true",
input_make_latest: env.INPUT_MAKE_LATEST == "true" ? "true" : "false",
input_make_latest: env.INPUT_MAKE_LATEST ? env.INPUT_MAKE_LATEST : "true",
};
};

Expand Down