(pr: GitHubPull, cmsLabelPrefix: string)
| 194 | } |
| 195 | |
| 196 | function withoutCmsLabel(pr: GitHubPull, cmsLabelPrefix: string) { |
| 197 | return pr.labels.every(l => !isCMSLabel(l.name, cmsLabelPrefix)); |
| 198 | } |
| 199 | |
| 200 | function getTreeFiles(files: GitHubCompareFiles) { |
| 201 | const treeFiles = files.reduce((arr, file) => { |
no test coverage detected