From b19ab695ebb7f90df21268d066621d1e44725679 Mon Sep 17 00:00:00 2001 From: Hardik Date: Fri, 19 Jun 2026 03:28:03 +0530 Subject: [PATCH] feat(automation): add manual run-watcher launcher for desktop shortcut Co-Authored-By: Claude Opus 4.8 --- automation/run-watcher.cmd | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 automation/run-watcher.cmd diff --git a/automation/run-watcher.cmd b/automation/run-watcher.cmd new file mode 100644 index 0000000..c524b15 --- /dev/null +++ b/automation/run-watcher.cmd @@ -0,0 +1,12 @@ +@echo off +REM Manual launcher for the Claude issue watcher. +REM Double-click (or use the desktop shortcut) to run a poll on demand +REM instead of waiting for the 10-minute scheduled task. +title Pelagia - Claude Issue Watcher +echo Running the Claude issue watcher... +echo (this can take ~12 min if it picks up a queued issue and runs Claude) +echo ---------------------------------------------------------------------- +powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0claude-issue-watcher.ps1" +echo ---------------------------------------------------------------------- +echo Done. Review any new PR on Forgejo, then close this window. +pause