adding documentation for exact locations

Signed-off-by: Justin De Burgo <justin.deburgo@aa.com>
This commit is contained in:
Justin De Burgo
2022-12-09 11:22:12 -06:00
parent 3ff751cbbb
commit 5a17cc9b41
+5 -1
View File
@@ -57,11 +57,15 @@ export interface Config {
/**
* The exact location, e.g.
* "https://github.com/org/repo/blob/master/users.yaml".
*
* The exact location can also be used to match on locations
* that contain glob characters themselves, e.g.
* "https://github.com/org/*\/blob/master/*.yaml".
*/
exact?: string;
/**
* The pattern allowed for the location, e.g.
* "https://github.com/org/*/blob/master/*.yaml.
* "https://github.com/org/*\/blob/master/*.yaml".
*/
pattern?: string;
}>;