Skip to content

Commit

Permalink
update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
andybons committed Oct 16, 2019
1 parent c9f4e71 commit 4b74225
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cmd/data/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ func main() {
// -label:Proposal-Hold
// -label:proposal-accepted proposal sort:updated-desc
corpus.GitHub().Repo("golang", "go").ForeachIssue(func(issue *maintner.GitHubIssue) error {
if issue.Closed || issue.Milestone == nil || issue.Milestone.Title != "Proposal" {
return nil
}
if issue.HasLabel("Go2") ||
if issue.Closed ||
issue.HasLabel("Go2") ||
issue.HasLabel("Proposal-Crypto") ||
issue.HasLabel("Proposal-Hold") ||
issue.HasLabel("Proposal-Accepted") {
Expand Down

0 comments on commit 4b74225

Please sign in to comment.