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
{{ message }}
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.
Specifying a RepositoryMatch AND a PathsExist filter does not work as expected. The ListRepos function will still fetch all the available repos, because compileFilters function does not return the correct filters.
compileFilters function first checks for RepositoryMatch and sets the FilterType to 1, then it checks for PathsExist and overwrites the FilterType to 2. So when we reach this line, repoFilters has a length of 0.
The text was updated successfully, but these errors were encountered:
Specifying a
RepositoryMatch
AND aPathsExist
filter does not work as expected. The ListRepos function will still fetch all the available repos, because compileFilters function does not return the correct filters.compileFilters
function first checks forRepositoryMatch
and sets theFilterType
to1
, then it checks forPathsExist
and overwrites theFilterType
to2
. So when we reach this line,repoFilters
has a length of0
.The text was updated successfully, but these errors were encountered: