You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This action could handle a little more flexibility in the repositories input. A common mistake is to provide repositories: foo, bar instead of repositories: foo,bar if a token is needed for > 1 repository.
This action could handle a little more flexibility in the
repositories
input. A common mistake is to providerepositories: foo, bar
instead ofrepositories: foo,bar
if a token is needed for > 1 repository.For example:
Fails to get a token because the body in the HTTP request to GH will look like this:
I think trimming the repos, something like
repos = repos.map(r => r.trim())
, would catch this and make for a more intuitive APIThe text was updated successfully, but these errors were encountered: