fabro/graph.fabro
Fabro 0c475de589 init run
⚒️ Generated with [Fabro](https://fabro.sh)
2026-03-15 17:53:23 -04:00

11 lines
494 B
Text

digraph GhAuthTest {
graph [goal="Verify GitHub CLI authentication works via GITHUB_TOKEN"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
check_auth [label="Check GH Auth", shape=parallelogram, script="echo '--- Checking gh auth status ---' && gh auth status && echo '--- Listing repo ---' && gh repo view fabro-sh/fabro --json name,owner -q '.owner.login + \"/\" + .name' && echo '--- Done ---'"]
start -> check_auth -> exit
}