12 lines
652 B
Batchfile
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
|