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