Files
html/api/blade-scripts/github-pat.ps1
2026-04-12 22:57:03 +02:00

7 lines
270 B
PowerShell

try {
# Open GitHub token page in default browser
Start-Process "https://github.com/settings/tokens"
Start-Sleep 3
Write-Output "GitHub tokens page opened in browser"
Write-Output "User must manually create new PAT"
} catch { Write-Output "ERR: $_" }