(ctx context.Context, remoteHost, spinnerMessage string, args ...string)
| 83 | type orgPullRequest struct{} |
| 84 | |
| 85 | func runOrgAPI(ctx context.Context, remoteHost, spinnerMessage string, args ...string) ([]byte, error) { |
| 86 | ghArgs := append([]string{"api", "--hostname", remoteHost}, args...) |
| 87 | return workflow.RunGHContext(ctx, spinnerMessage, ghArgs...) |
| 88 | } |
| 89 | |
| 90 | func runOrgAPICombined(ctx context.Context, remoteHost, spinnerMessage string, args ...string) ([]byte, error) { |
| 91 | ghArgs := append([]string{"api", "--hostname", remoteHost}, args...) |
no test coverage detected