diff --git a/docs_new/querymatchers.md b/docs_new/querymatchers.md index 97412d75..9452059e 100644 --- a/docs_new/querymatchers.md +++ b/docs_new/querymatchers.md @@ -4,13 +4,13 @@ RepoM uses query matchers to check if a given term matches a given repository. The following query matchers are currently implemented: -| Matcher type | Term types | Term | Accepted values | Description | -|---------------------------|----------------------------|------|----------------------------------------|--------------------------------------------------------------------------------------------| -| FreeTextMatcher | FreeText | | * | Checks if the free text matches a tag, else if the repositiry name contains the free text. | -| NameMatcher | SimpleTerm, StartsWithTerm | name | * | Checks if the repository name equals the given name | -| TagMatcher | SimpleTerm, StartsWithTerm | tag | * | Checks if the repository tags contain the given tag | -| IsPinnedMatcher | SimpleTerm | is | pinned | Checks if a repository is pinned or not | -| IsBareRepositoryMatcher | SimpleTerm | is | bare | Returns true if a repository is a bare repository. | -| IsBehindMatcher | SimpleTerm | is | behind | Returns true if a repository has pending updates from the remote. | -| HasUnPushedChangesMatcher | SimpleTerm | has | changes | Returns true if there are changed uncommitted files. | -| HasPullRequestsMatcher | SimpleTerm | has | [pr, prs, pull-request, pull-requests] | Returns true if there are known pull requests available in Azure DevOps. | \ No newline at end of file +| Term types | Term | Accepted values | Description | +|----------------------------|------|----------------------------------------|--------------------------------------------------------------------------------------------| +| FreeText | | * | Checks if the free text matches a tag, else if the repositiry name contains the free text. | +| SimpleTerm, StartsWithTerm | name | * | Checks if the repository name equals the given name | +| SimpleTerm, StartsWithTerm | tag | * | Checks if the repository tags contain the given tag | +| SimpleTerm | is | pinned | Checks if a repository is pinned or not | +| SimpleTerm | is | bare | Returns true if a repository is a bare repository. | +| SimpleTerm | is | behind | Returns true if a repository has pending updates from the remote. | +| SimpleTerm | has | changes | Returns true if there are changed uncommitted files. | +| SimpleTerm | has | [pr, prs, pull-request, pull-requests] | Returns true if there are known pull requests available in Azure DevOps. | \ No newline at end of file diff --git a/docs_new/search.md b/docs_new/search.md index 4b7100bd..d67ea038 100644 --- a/docs_new/search.md +++ b/docs_new/search.md @@ -23,7 +23,6 @@ Currently, the following query parsers are available: sdf - ### Query matchers `IQueryMatcher`