sourcebot/schemas/v3/connection.json
Michael Sukkarieh b6dedc78ba
Add Bitbucket support (#275)
* [wip] add bitbucket schema

* wip bitbucket support

* add support for pulling bitbucket repos and UI support for bitbucket

* fix bitbucket app password auth case

* add back support for multiple workspaces and add exclude logic

* add branches to bitbucket

* add bitbucket server support

* add docs for bitbucket and minor nits

* doc nits

* code rabbit fixes

* fix build error

* add bitbucket web ui support

* misc cleanups and fix ui issues with bitbucket connections

* add changelog entry
2025-04-25 11:22:40 -07:00

21 lines
No EOL
401 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ConnectionConfig",
"oneOf": [
{
"$ref": "./github.json"
},
{
"$ref": "./gitlab.json"
},
{
"$ref": "./gitea.json"
},
{
"$ref": "./gerrit.json"
},
{
"$ref": "./bitbucket.json"
}
]
}