Skip to content

Commit

Permalink
Follow letter-case mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
knokmki612 committed Jan 1, 2019
1 parent 25feb3e commit 068882b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/parse-title.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ module.exports = class ParseTitle {
}

get isEventIssue () {
return this.title.length >= 3 && /OSS Gate (Workshop|Meetup)/.test(this.base)
return this.title.length >= 3 &&
/oss gate (workshop|meetup)/.test(this.base.toLowerCase())
}
}

0 comments on commit 068882b

Please sign in to comment.