| 265 | } |
| 266 | |
| 267 | type AutoMergeRequest struct { |
| 268 | AuthorEmail *string `json:"authorEmail"` |
| 269 | CommitBody *string `json:"commitBody"` |
| 270 | CommitHeadline *string `json:"commitHeadline"` |
| 271 | // MERGE, REBASE, SQUASH |
| 272 | MergeMethod string `json:"mergeMethod"` |
| 273 | EnabledAt time.Time `json:"enabledAt"` |
| 274 | EnabledBy Author `json:"enabledBy"` |
| 275 | } |
| 276 | |
| 277 | // Commit loads just the commit SHA and nothing else |
| 278 | type Commit struct { |
nothing calls this directly
no outgoing calls
no test coverage detected