Add auto-start SSH tunnel hook (#2)
All checks were successful
CI / validate (push) Successful in 48s

This commit is contained in:
Samuel James 2026-06-23 22:58:09 +00:00
parent d1697fc811
commit 320f816100

View file

@ -0,0 +1,14 @@
{
"enabled": true,
"name": "Start Forgejo Tunnel",
"description": "Starts the SSH tunnel to Forgejo (localhost:3000 → 192.168.122.102:3000) when a prompt is submitted, ensuring the Forgejo extension and Git operations work.",
"version": "1",
"when": {
"type": "promptSubmit"
},
"then": {
"type": "runCommand",
"command": "powershell -Command \"if (-not (Test-NetConnection -ComputerName localhost -Port 3000 -InformationLevel Quiet -WarningAction SilentlyContinue)) { Start-Process ssh -ArgumentList '-N','forgejo-tunnel' -WindowStyle Hidden }\"",
"timeout": 10
}
}