Skip to content

Commit

Permalink
fix retention-days input parameter (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
krrrr38 authored Jun 8, 2024
1 parent 6d7e3f6 commit ab748c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const getConfig = (): Config => {
const matchingThreshold = getNumberInput('matching-threshold') ?? 0;
const thresholdRate = getNumberInput('threshold-rate') ?? 0;
const thresholdPixel = getNumberInput('threshold-pixel') ?? 0;
const retentionDays = getNumberInput('threshold-pixel') ?? 30;
const retentionDays = getNumberInput('retention-days') ?? 30;
validateMatchingThreshold(matchingThreshold);
validateThresholdRate(thresholdRate);
const targetHash = core.getInput('target-hash') || null;
Expand Down

0 comments on commit ab748c9

Please sign in to comment.