mirror of
https://github.com/harness/drone.git
synced 2025-05-11 14:40:05 +08:00
13 lines
243 B
Go
13 lines
243 B
Go
package reference
|
|
|
|
// IsNameOnly returns true if reference only contains a repo name.
|
|
func IsNameOnly(ref Named) bool {
|
|
if _, ok := ref.(NamedTagged); ok {
|
|
return false
|
|
}
|
|
if _, ok := ref.(Canonical); ok {
|
|
return false
|
|
}
|
|
return true
|
|
}
|