Skip to content

Commit

Permalink
fix: Empty branch input in create-release-branch (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzypixelz authored Jun 17, 2024
1 parent 2b7b256 commit 82e6f8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/create-release-branch-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -24851,7 +24851,7 @@ function setup() {
version: version === "" ? undefined : version,
liveRun,
repo,
branch,
branch: branch === "" ? undefined : branch,
githubToken,
dryRunHistorySize: dryRunHistorySize == "" ? DEFAULT_DRY_RUN_HISTORY_SIZE : Number(dryRunHistorySize),
};
Expand Down
2 changes: 1 addition & 1 deletion src/create-release-branch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function setup(): Input {
version: version === "" ? undefined : version,
liveRun,
repo,
branch,
branch: branch === "" ? undefined : branch,
githubToken,
dryRunHistorySize: dryRunHistorySize == "" ? DEFAULT_DRY_RUN_HISTORY_SIZE : Number(dryRunHistorySize),
};
Expand Down

0 comments on commit 82e6f8f

Please sign in to comment.