-
Notifications
You must be signed in to change notification settings - Fork 106
RFC: Bitbucket support #143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
stevealx
wants to merge
11
commits into
sourcebot-dev:msukkarieh/bitbucket
from
stevealx:bitbucket-cloud
Closed
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
3a238d1
yarn: add @coderabbitai/bitbucket
stevealx 8134f4f
ignore: ignore vim swap files
stevealx a8d6f60
editorconfig: add initial revision
stevealx 260e114
public: add bitbucket.svg
stevealx e76c224
backend: add bitbucket client
stevealx 447fe6a
schemas: add bitbucket support
stevealx 75563c8
main: add bitbucket support
stevealx c5fdc88
web: add bitbucket support
stevealx 57d55cc
configs: add sample config for bitbucket cloud
stevealx 417633d
bitbucket: re-factor for cloud and server support
stevealx 433ce9b
README: add bitbucket
stevealx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default charset | ||
[*.{js,py,ts}] | ||
charset = utf-8 | ||
|
||
# Tab indentation (no size specified) | ||
# 'go fmt' uses tabs | ||
[{Makefile,*.mk,*.go}] | ||
indent_style = tab | ||
|
||
# Indentation override for JS | ||
[{*.js,*.ts,*.json}] | ||
indent_style = space | ||
indent_size = 4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -163,4 +163,5 @@ dist | |
.sourcebot | ||
/bin | ||
/config.json | ||
.DS_Store | ||
.DS_Store | ||
.*.sw* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "../schemas/v2/index.json", | ||
// Note: to include private repositories, you must provide an authentication token. | ||
// See: configs/auth.json for a example. | ||
"repos": [ | ||
// From bitbucket, include: | ||
// - all repos in workspaces owned by user | ||
{ | ||
"type": "bitbucket", | ||
"token": "BB_TOKEN", | ||
"user": "user1" | ||
} | ||
] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"$schema": "../schemas/v2/index.json", | ||
// Note: to include private repositories, you must provide an authentication token. | ||
// See: configs/auth.json for a example. | ||
"repos": [ | ||
// From bitbucket, include: | ||
// - all repos in workspaces owned by user | ||
{ | ||
"type": "bitbucket", | ||
"url": "http://localhost:4010", | ||
"token": "<use your token here>", | ||
"serverType": "server", | ||
"revisions": { | ||
"branches": [ | ||
"main", | ||
"master" | ||
] | ||
} | ||
} | ||
] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.