Skip to content

Commit 8e41872

Browse files
committed
Try checking in demo.gif
1 parent 1bcfb3d commit 8e41872

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<h1 align="center">sauron</h1>
66

77
<p align="center">
8-
A terminal UI dashboard for monitoring your GitHub repositories.
8+
A terminal UI for your GitHub repositories.
99
<br />
1010
Issues, pull requests, workflow runs, branches, and notifications — all in one place.
1111
</p>
1212

1313
---
1414

15-
![demo](https://github.com/user-attachments/assets/TODO)
15+
![demo](./demo.gif)
1616

1717
## Features
1818

app/Main.hs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,11 @@ buildBaseContext eventChan = do
253253

254254
maybe authenticateWithGitHub pure maybeAuth
255255

256-
putStrLn [i|Got auth: #{auth}|]
256+
case auth of
257+
BasicAuth {} -> putStrLn "Got basic auth"
258+
OAuth {} -> putStrLn "Got OAuth auth"
259+
JWT {} -> putStrLn "Got JWT auth"
260+
EnterpriseOAuth {} -> putStrLn "Got enterprise OAuth auth"
257261

258262
debugFn <- case cliDebugFile of
259263
Nothing -> return $ const $ return ()

demo.gif

2.66 MB
Loading

0 commit comments

Comments
 (0)