IsValidGitHubRepositoryName checks if a string is a valid GitHub repository name.
(s string)
| 381 | |
| 382 | // IsValidGitHubRepositoryName checks if a string is a valid GitHub repository name. |
| 383 | func IsValidGitHubRepositoryName(s string) bool { |
| 384 | return isValidGitHubNameWithMaxLength(s, maxGitHubRepositoryNameLength) |
| 385 | } |