Skip to content

Commit

Permalink
Defaut to not dying
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Smith committed Jan 13, 2022
1 parent 6819416 commit 0780de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ async function run() {
const repositoryName = core.getInput("repository", {required: true});
const format = core.getInput("format", {required: false}) || "npm";
const prefix = core.getInput("prefix", {required: false});
const dieOnMissing = core.getInput("die-on-missing", {required: false}) || true;
const dieOnMissing = core.getInput("die-on-missing", {required: false});
const increment = core.getInput("increment-amount", {required: false}) || 1;

// Create required resources
Expand Down

0 comments on commit 0780de1

Please sign in to comment.