-
Notifications
You must be signed in to change notification settings - Fork 772
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* support azure repos * return error if no files found
- Loading branch information
1 parent
d2ca579
commit 958a896
Showing
2 changed files
with
36 additions
and
3 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package gitproviders | ||
|
||
import "net/url" | ||
|
||
func IsAzureRepo(repoURL string) bool { | ||
host, err := url.Parse(repoURL) | ||
if err != nil { | ||
return false | ||
} | ||
|
||
return host.Host == "dev.azure.com" | ||
} |