There was an error while loading. Please reload this page.
1 parent d40d0d4 commit 05e525dCopy full SHA for 05e525d
1 file changed
.github/workflows/pr-author-inactivity.yml
@@ -55,7 +55,7 @@ jobs:
55
const REMINDER_MARKER = '<!-- pr-author-inactivity:reminder -->';
56
const REMINDER_MS = 72 * 60 * 60 * 1000;
57
const CLOSE_MS = 120 * 60 * 60 * 1000;
58
- const DRY_RUN = core.getBooleanInput('dry_run');
+ const DRY_RUN = String(context.payload.inputs?.dry_run || 'false').toLowerCase() === 'true';
59
60
function ts(value) {
61
return value ? new Date(value).getTime() : 0;
0 commit comments