(v any)
| 754 | } |
| 755 | |
| 756 | func isBlank(v any) bool { |
| 757 | switch vv := v.(type) { |
| 758 | case string: |
| 759 | return vv == "" |
| 760 | case []string: |
| 761 | return len(vv) == 0 |
| 762 | default: |
| 763 | return true |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | func PullRequestClose(httpClient *http.Client, repo ghrepo.Interface, prID string) error { |
| 768 | var mutation struct { |