(ctx context.Context)
| 96 | } |
| 97 | |
| 98 | func (c *client) addStar(ctx context.Context) { |
| 99 | resp, err := c.api.StarGetRepo(ctx, sprRepoOwner, sprRepoName) |
| 100 | check(err) |
| 101 | |
| 102 | _, err = c.api.StarAdd(ctx, genclient.AddStarInput{ |
| 103 | StarrableId: resp.Repository.Id, |
| 104 | }) |
| 105 | check(err) |
| 106 | } |
no test coverage detected