Created
June 11, 2019 06:26
-
-
Save kawakami-o3/3ba8774afb6031979785e67b1b474118 to your computer and use it in GitHub Desktop.
devapp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sort release blocker issues to the end. | |
ri := x[i].Issue != nil && x[i].Issue.HasLabel("release-blocker") | |
rj := x[j].Issue != nil && x[j].Issue.HasLabel("release-blocker") | |
if ri != rj { | |
return ri | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment