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
When using -R repo-owner/* octoherd will return all repositories within repo-owner. In certain circumstances you might want to ignore one or more repositories.
First I was thinking about another argument like --octoherd-ingore-repos, but this would require adding another prompt when using the interactive mode. Another idea was using a regex, but this can get quite complicated I think(from a user point of view)
Which leads to my preferred options, negating the existing repo argument by adding a leading exclamation mark like -R !repo-owner/repo-to-ignore. A full example would look like this
When using
-R repo-owner/*
octoherd will return all repositories withinrepo-owner
. In certain circumstances you might want to ignore one or more repositories.First I was thinking about another argument like
--octoherd-ingore-repos
, but this would require adding another prompt when using the interactive mode. Another idea was using a regex, but this can get quite complicated I think(from a user point of view)Which leads to my preferred options, negating the existing repo argument by adding a leading exclamation mark like
-R !repo-owner/repo-to-ignore
. A full example would look like thisThis should (in theory) work quite well with the interactive mode as well.
The text was updated successfully, but these errors were encountered: