SetPRSuccess marks the PR creation as successful.
(url, title string)
| 135 | |
| 136 | // SetPRSuccess marks the PR creation as successful. |
| 137 | func (c *CompletionScreen) SetPRSuccess(url, title string) { |
| 138 | c.prState = AutoActionSuccess |
| 139 | c.prURL = url |
| 140 | c.prTitle = title |
| 141 | } |
| 142 | |
| 143 | // SetPRError marks the PR creation as failed with an error message. |
| 144 | func (c *CompletionScreen) SetPRError(errMsg string) { |
no outgoing calls