(commit_hash)
| 168 | |
| 169 | |
| 170 | def commit_files_changed(commit_hash): |
| 171 | cmd = f"git diff-tree --no-commit-id --name-only -r {commit_hash}" |
| 172 | ret, out, err = run(cmd) |
| 173 | return out.split("\n") if ret == 0 else None |
| 174 | |
| 175 | |
| 176 | def parse_pr_number(body, commit_hash, title): |
no test coverage detected
searching dependent graphs…