github.com/mistwind/reviewdog@v0.0.0-20230322024206-9cfa11856d58/doghouse/appengine/tmpl/gh/top.html (about) 1 {{define "body"}} 2 3 <h3>Installed Accounts & Orgs</h3> 4 5 <div style="display: flex;"> 6 {{range $installation := .Installations}} 7 <div class="mdl-card mdl-shadow--2dp" 8 style="width: 256px; height: 256px; background: url('{{ $installation.AccountIconURL }}') center / cover; margin: 5px;"> 9 <div class="mdl-card__title mdl-card--expand"></div> 10 <div class="mdl-card__actions mdl-card--border" 11 style="background: rgba(0, 0, 0, 0.2); display: flex; box-sizing:border-box; align-items: center;"> 12 <a href="{{ $installation.AccountHTMLURL }}" style="color: #eee; text-decoration: none;">{{ $installation.Account }}</a> 13 <div class="mdl-layout-spacer"></div> 14 <a href="{{ $installation.HTMLURL }}"> 15 <i class="material-icons">settings</i> 16 </a> 17 </div> 18 </div> 19 {{end}} 20 </div> 21 <p> 22 Go to <a href="{{ .App.HTMLURL }}">reviewdog app settings</a> to install 23 reviewdog app to other accounts. 24 </p> 25 <p> 26 Go to https://reviewdog.app/gh/{owner}/{repo} to get REVIEWDOG_TOKEN. 27 <br> 28 Or 29 <br> 30 Run reviewdog CLI from Travis CI without REVIEWDOG_TOKEN. 31 <br> 32 </p> 33 <p> 34 <pre> 35 $ reviewdog -conf=.reviewdog.yml -reporter=github-pr-check 36 </pre> 37 See also <a href="https://github.com/mistwind/reviewdog">github.com/mistwind/reviewdog</a> 38 </p> 39 40 41 {{end}} 42