-
-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#395] Add TUI button for GitHub Actions #396
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no place for me here... I will choose the truth I like.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! I have a few minor comments, but this is great 👍
travisShield :: Text = | ||
"https://img.shields.io/travis/" <> settingsOwner <> "/" <> settingsRepo <> ".svg?logo=travis" | ||
"https://img.shields.io/travis/" <> ownerRepo <> ".svg?logo=travis" | ||
travisLink :: Text = | ||
"https://travis-ci.org/" <> settingsOwner <> "/" <> settingsRepo | ||
"https://travis-ci.org/" <> ownerRepo | ||
travisBadge :: Text = | ||
makeBadge "Build status" travisShield travisLink | ||
|
||
appVeyorShield :: Text = | ||
"https://ci.appveyor.com/api/projects/status/github/" <> settingsOwner <> "/" <> settingsRepo <> "?branch=master&svg=true" | ||
"https://ci.appveyor.com/api/projects/status/github/" <> ownerRepo <> "?branch=master&svg=true" | ||
appVeyorLink :: Text = | ||
"https://ci.appveyor.com/project/" <> settingsOwner <> "/" <> settingsRepo | ||
"https://ci.appveyor.com/project/" <> ownerRepo | ||
appVeyorBadge :: Text = | ||
makeBadge "Windows build status" appVeyorShield appVeyorLink |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be a good idea to change type signatures to the same style for appVeyor
and travis
as well here?
Also, regarding the problem with summoner/summoner-tui/src/Summoner/Tui.hs Lines 168 to 178 in c22a243
|
Co-Authored-By: Dmitrii Kovanikov <kovanikov@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks awesome!
Resolves #395