Enable automatic closing of inactive issues and pull requests
Change DEFAULT_DRY_RUN from "true" to "false" in close-inactive workflow to activate automatic closure of stale items after 90 days of inactivity.
frdel committed
Mar 26, 2026 at 08:57 UTC
02b8511b5e2470ed17705a494f0e32af3e98877a
1 file changed
+1
-1
.github/workflows/close-inactive.yml
+1
-1
@@ -20,7 +20,7 @@ permissions:
20
21
env:
22
DEFAULT_INACTIVE_DAYS: "90"
23
- DEFAULT_DRY_RUN: "true"
23
+ DEFAULT_DRY_RUN: "false"
24
25
jobs:
26
close_inactive: