Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 31 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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": "<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.