Closed manekenpix closed 5 years ago
Closes #89
Added checking if an issue is labelled help wanted using regex:
help wanted
helpWantedRegExp = /help( |-)?wanted/i; hasHelpWanted = (label) => { return helpWantedRegExp.test(label.name); }
Also added checking if PRs have a priority label and, if not, adding a default one priority: medium.
priority: medium
Closes #89
Added checking if an issue is labelled
help wanted
using regex:Also added checking if PRs have a priority label and, if not, adding a default one
priority: medium
.