(config markTemplateConfig)
| 139 | } |
| 140 | |
| 141 | func unmarkTemplateArgs(config markTemplateConfig) (*unmarkProjectTemplateMutation, map[string]interface{}) { |
| 142 | return &unmarkProjectTemplateMutation{}, map[string]interface{}{ |
| 143 | "input": githubv4.UnmarkProjectV2AsTemplateInput{ |
| 144 | ProjectID: githubv4.ID(config.opts.projectID), |
| 145 | }, |
| 146 | "firstItems": githubv4.Int(0), |
| 147 | "afterItems": (*githubv4.String)(nil), |
| 148 | "firstFields": githubv4.Int(0), |
| 149 | "afterFields": (*githubv4.String)(nil), |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | func printResults(config markTemplateConfig, project queries.ProjectMutationQuery) error { |
| 154 | if !config.io.IsStdoutTTY() { |
no test coverage detected
searching dependent graphs…