@kyanny's blog

My thoughts, my life. Views/opinions are my own.

Pull Requestのbase branchがmasterとdevelop以外のときブランチ名を目立たせる

blog.sushi.money

デフォルトブランチが msater のリポジトリと develop のリポジトリがあるので、これを少しだけ改造した。

/* 

Pull Requestのbase branchがmaster以外のときブランチ名を目立たせる - hitode909の日記
http://blog.sushi.money/entry/2017/07/21/104650

*/

.gh-header-meta .commit-ref:first-of-type {
  background: #dbab09;
}
.gh-header-meta .commit-ref:first-of-type[title*='master'] {
  background: #eff7ff !important;
}
.gh-header-meta .commit-ref:first-of-type[title*='develop'] {
  background: #eff7ff !important;
}

f:id:a666666:20170727174123p:plainf:id:a666666:20170727174130p:plainf:id:a666666:20170727174135p:plain