From 83106423d6b27199fbd36a10fe55343006a9fe31 Mon Sep 17 00:00:00 2001 From: Edvin Norling Date: Tue, 28 Jun 2022 17:09:27 +0200 Subject: [PATCH] Add infomration about space workaround --- README.md | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e4f530b..f67d88e 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.