feat(automation): add manual run-watcher launcher for desktop shortcut

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Hardik 2026-06-19 03:28:03 +05:30
parent 5a7145e0cb
commit b19ab695eb

View file

@ -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