pelagia-portal/automation/run-watcher.cmd
Hardik b19ab695eb feat(automation): add manual run-watcher launcher for desktop shortcut
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-19 03:28:12 +05:30

12 lines
652 B
Batchfile

@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