mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
11 lines
494 B
Text
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
|
|
}
|