Maximum length of a URL: 8192 bytes
(urlStr string)
| 53 | |
| 54 | // Maximum length of a URL: 8192 bytes |
| 55 | func ValidURL(urlStr string) bool { |
| 56 | return len(urlStr) < 8192 |
| 57 | } |
| 58 | |
| 59 | func AddMetadataToIssueParams(client *api.Client, baseRepo ghrepo.Interface, params map[string]interface{}, tb *IssueMetadataState, projectV1Support gh.ProjectsV1Support) error { |
| 60 | if !tb.HasMetadata() { |