Skip to content

Commit

Permalink
wat
Browse files Browse the repository at this point in the history
  • Loading branch information
benjdlambert committed Apr 16, 2024
1 parent e91aa3a commit c46720e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export async function runVersion({
}: VersionOptions): Promise<RunVersionResult> {
let repo = `${github.context.repo.owner}/${github.context.repo.repo}`;
let branch = github.context.ref.replace("refs/heads/", "");
let versionBranch = customVersionBranch ?? `changeset-release/${branch}`;
let versionBranch = customVersionBranch || `changeset-release/${branch}`;
let octokit = github.getOctokit(githubToken);
let { preState } = await readChangesetState(cwd);

Expand Down

0 comments on commit c46720e

Please sign in to comment.