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

feat: Make flub release request bump type lazily #23096

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

CraigMacomber
Copy link
Contributor

Description

Make flub release request bump type lazily.

Reviewer Guidance

The review process is outlined on this wiki page.

I don't know a great way to test this locally easily, since running it on my branch doesn't hit very many of the cases since it objects to the branch it's on. I can confirm it prompts if I disable checks, but I'm not sure if it would skip prompting run on a release that's not released where the bump type should not be needed.

@github-actions github-actions bot added area: build Build related issues base: main PRs targeted against main branch labels Nov 14, 2024
Comment on lines -35 to -62
const { bumpType: inputBumpType, context, releaseVersion } = data;

const currentBranch = await context.gitRepo.getCurrentBranchName();
const currentVersion = releaseVersion;
const bumpedMajor = bumpVersionScheme(currentVersion, "major");
const bumpedMinor = bumpVersionScheme(currentVersion, "minor");
const bumpedPatch = bumpVersionScheme(currentVersion, "patch");

// If an bumpType was set in the handler data, use it. Otherwise set it as the default for the branch. If there's
// no default for the branch, ask the user.
let bumpType = inputBumpType ?? getDefaultBumpTypeForBranch(currentBranch);
if (inputBumpType === undefined) {
const selectedBumpType: VersionBumpType = await rawlist({
choices: [
{ value: "major", name: `major (${currentVersion} => ${bumpedMajor.version})` },
{ value: "minor", name: `minor (${currentVersion} => ${bumpedMinor.version})` },
{ value: "patch", name: `patch (${currentVersion} => ${bumpedPatch.version})` },
],
message: `The current branch is '${currentBranch}'. The default bump type for that branch is '${bumpType}', but you can change it now if needed.`,
});
bumpType = selectedBumpType;
// eslint-disable-next-line require-atomic-updates
data.bumpType = selectedBumpType;
}

if (bumpType === undefined) {
throw new Error(`bumpType is undefined.`);
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All this logical basically does nothing because inputBumpType can't be undefined based on its type. This also seems redundant with the logic which computes the inputBumpType. Logic has been simplified to use the already provided bump type (which will lazily prompt if needed)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: build Build related issues base: main PRs targeted against main branch
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant