SetPRError marks the PR creation as failed with an error message.
(errMsg string)
| 142 | |
| 143 | // SetPRError marks the PR creation as failed with an error message. |
| 144 | func (c *CompletionScreen) SetPRError(errMsg string) { |
| 145 | c.prState = AutoActionError |
| 146 | c.prError = errMsg |
| 147 | } |
| 148 | |
| 149 | // Tick advances the spinner animation frame. |
| 150 | func (c *CompletionScreen) Tick() { |
no outgoing calls