daysBeforeStale: parseFloat()

in src/entrypoint.js [35:53]


    daysBeforeStale: parseFloat(process.env.DAYS_BEFORE_STALE),
    daysBeforeClose: parseFloat(process.env.DAYS_BEFORE_CLOSE),
    daysBeforeAncient: parseFloat(process.env.DAYS_BEFORE_ANCIENT),
    staleIssueLabel: process.env.STALE_ISSUE_LABEL,
    exemptIssueLabels: process.env.EXEMPT_ISSUE_LABELS,
    stalePrLabel: process.env.STALE_PR_LABEL,
    exemptPrLabels: process.env.EXEMPT_PR_LABELS,
    cfsLabel: process.env.CFS_LABEL,
    issueTypes: process.env.ISSUE_TYPES.split(','),
    responseRequestedLabel: process.env.RESPONSE_REQUESTED_LABEL,
    minimumUpvotesToExempt: parseInt(process.env.MINIMUM_UPVOTES_TO_EXEMPT),
    dryrun: String(process.env.DRYRUN).toLowerCase() === 'true',
  };

  for (const numberInput of [
    args.daysBeforeAncient,
    args.daysBeforeClose,
    args.daysBeforeStale,
  ]) {