SetPushError marks the push as failed with an error message.
(errMsg string)
| 124 | |
| 125 | // SetPushError marks the push as failed with an error message. |
| 126 | func (c *CompletionScreen) SetPushError(errMsg string) { |
| 127 | c.pushState = AutoActionError |
| 128 | c.pushError = errMsg |
| 129 | } |
| 130 | |
| 131 | // SetPRInProgress marks the PR creation as in progress. |
| 132 | func (c *CompletionScreen) SetPRInProgress() { |
no outgoing calls