mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-10-22 09:28:47 +00:00
@@ -50,6 +50,8 @@ func (r *Repo) IsRemote() bool {
|
|||||||
return true
|
return true
|
||||||
case strings.HasPrefix(r.Path, "git@"):
|
case strings.HasPrefix(r.Path, "git@"):
|
||||||
return true
|
return true
|
||||||
|
case strings.HasPrefix(r.Path, "gitlab@"):
|
||||||
|
return true
|
||||||
case strings.HasPrefix(r.Path, "http://"):
|
case strings.HasPrefix(r.Path, "http://"):
|
||||||
return true
|
return true
|
||||||
case strings.HasPrefix(r.Path, "https://"):
|
case strings.HasPrefix(r.Path, "https://"):
|
||||||
@@ -77,6 +79,10 @@ func (r *Repo) IsGit() bool {
|
|||||||
return true
|
return true
|
||||||
case strings.HasPrefix(r.Path, "ssh://git@"):
|
case strings.HasPrefix(r.Path, "ssh://git@"):
|
||||||
return true
|
return true
|
||||||
|
case strings.HasPrefix(r.Path, "gitlab@"):
|
||||||
|
return true
|
||||||
|
case strings.HasPrefix(r.Path, "ssh://gitlab@"):
|
||||||
|
return true
|
||||||
case strings.HasPrefix(r.Path, "https://github"):
|
case strings.HasPrefix(r.Path, "https://github"):
|
||||||
return true
|
return true
|
||||||
case strings.HasPrefix(r.Path, "http://github"):
|
case strings.HasPrefix(r.Path, "http://github"):
|
||||||
|
Reference in New Issue
Block a user