-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
this is what happens when there are no tests 🤷
cli/lib/resolve-repositories.js
Lines 2 to 4 in 3c223de
| const invalidRepositories = repositories.filter((fullName) => { | |
| /^[a-z0-9_.-]+\/([a-z0-9_.-]+|\*)$/i.test(fullName); | |
| }); |
What this should be is
const invalidRepositories = repositories.filter((fullName) => !/^[a-z0-9_.-]+\/([a-z0-9_.-]+|\*)$/i.test(fullName); Depending on what we decide in #18 we need to adjust the regex to match the * in different places in the repository name.
Metadata
Metadata
Assignees
Labels
No labels