Skip to content

Commit

Permalink
fix: simplify if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoro9 committed Dec 5, 2024
1 parent 96d5cf3 commit 6979ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion semantic-release/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export async function main() {
branches: inputs.branches,
ci: inputs.ci,
dryRun: inputs.dryRun,
}).filter(([, value]) => value !== undefined && value !== null),
}).filter(([, value]) => value != undefined),
),
);
if (result) {
Expand Down

0 comments on commit 6979ac2

Please sign in to comment.