Skip to content

Commit

Permalink
chore: do not depend on default in action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pkerschbaum committed May 5, 2023
1 parent 142d633 commit dc004f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const token = getInput("github-token");
const monorepoBasePath = getInput("monorepo-base-path");
const s3Config = getInput("s3-config");
const threshold = getInput("threshold");
const failOnThreshold = !!getInput("fail-on-threshold");
const failOnThreshold = getInput("fail-on-threshold") !== "false";
const mode = getInput("mode");
const base = context.payload.pull_request?.base.ref;

Expand Down

0 comments on commit dc004f6

Please sign in to comment.