diff --git a/README.md b/README.md index dc61c09..6be57bc 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,36 @@ func main() { } ``` -# License +#### Spaces in names -This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. +In Azure DevOps spaces are allowed in project names. To support this use `%20` instead of a space. +So `test%20lab` instead of `test lab`. +```json +{ + "organizations": [ + { + "provider": "azuredevops", + "azuredevops": { + "pat": "" + }, + "host": "dev.azure.com", + "name": "xenitab", + "repositories": [ + { + "name": "fleet-infra", + "project": "test%20lab", + "namespaces": [ + "foo", + "bar" + ] + } + ] + } + ] +} +``` + +## License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.