-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow Gitiles URL for HTTP remote to be different to URL for the web …
…interface (#312) * Allowed the Gitiles URL for the HTTP remote to be different to the URL for the web interface. * 2.12.0 * Only run CI workflow on pushes to master.
- Loading branch information
Showing
36 changed files
with
1,238 additions
and
448 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -2,8 +2,8 @@ name: CI | |
|
||
on: | ||
push: | ||
branches-ignore: | ||
- "dependabot/**" | ||
branches: | ||
- "master" | ||
|
||
tags-ignore: | ||
- "**" | ||
|
This file contains 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 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 |
---|---|---|
|
@@ -3,14 +3,15 @@ | |
"name": "Azure Dev Ops Cloud", | ||
"server": [ | ||
{ | ||
"pattern": "^https:\\/\\/(?:.+@)?dev\\.azure\\.com\\/([^\\/]+)\\/([^\\/]+)\\/_git\\/.+", | ||
"remotePattern": "^https:\\/\\/(?:.+@)?dev\\.azure\\.com\\/([^\\/]+)\\/([^\\/]+)\\/_git\\/.+", | ||
"http": "https://dev.azure.com/{{ match[1] }}/{{ match[2] }}/_git", | ||
"ssh": "[email protected]:v3/{{ match[1] }}/{{ match[2] }}" | ||
}, | ||
{ | ||
"pattern": "^(?:git@)?ssh\\.dev\\.azure\\.com:v3\\/([^\\/]+)\\/([^\\/]+)\\/.+$", | ||
"remotePattern": "^(?:git@)?ssh\\.dev\\.azure\\.com:v3\\/([^\\/]+)\\/([^\\/]+)\\/.+$", | ||
"http": "https://dev.azure.com/{{ match[1] }}/{{ match[2] }}/_git", | ||
"ssh": "[email protected]:v3/{{ match[1] }}/{{ match[2] }}" | ||
"ssh": "[email protected]:v3/{{ match[1] }}/{{ match[2] }}", | ||
"webPattern": "^ONLY MATCH TO SSH REMOTE URLS$" | ||
} | ||
], | ||
"branchRef": "abbreviated", | ||
|
This file contains 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 |
---|---|---|
|
@@ -3,14 +3,15 @@ | |
"name": "GitHub", | ||
"server": [ | ||
{ | ||
"pattern": "^https:\\/\\/github.(?:com|dev)", | ||
"remotePattern": "^https:\\/\\/github.(?:com|dev)", | ||
"http": "https://github.com", | ||
"ssh": "[email protected]" | ||
}, | ||
{ | ||
"pattern": "^(?:git@)?github\\.com", | ||
"remotePattern": "^(?:git@)?github\\.com", | ||
"http": "https://github.com", | ||
"ssh": "[email protected]" | ||
"ssh": "[email protected]", | ||
"webPattern": "^ONLY MATCH TO SSH REMOTE URLS$" | ||
} | ||
], | ||
"branchRef": "abbreviated", | ||
|
This file contains 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 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 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 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 |
---|---|---|
|
@@ -9,4 +9,7 @@ public class ServerListItem { | |
|
||
public string? Ssh { get; set; } = ""; | ||
|
||
|
||
public string? Web { get; set; } = ""; | ||
|
||
} |
This file contains 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 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 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 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 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 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.