mirror of
https://github.com/actions/stale.git
synced 2026-01-07 07:48:17 +00:00
Default un-stale to true in new version
This commit is contained in:
2
dist/index.js
vendored
2
dist/index.js
vendored
@@ -3756,7 +3756,7 @@ function getAndValidateArgs() {
|
||||
exemptPrLabels: core.getInput('exempt-pr-labels'),
|
||||
onlyLabels: core.getInput('only-labels'),
|
||||
operationsPerRun: parseInt(core.getInput('operations-per-run', { required: true })),
|
||||
removeStaleWhenUpdated: core.getInput('remove-stale-when-updated') === 'true',
|
||||
removeStaleWhenUpdated: !(core.getInput('remove-stale-when-updated') === 'false'),
|
||||
debugOnly: core.getInput('debug-only') === 'true'
|
||||
};
|
||||
for (const numberInput of [
|
||||
|
||||
Reference in New Issue
Block a user