(commit_hash)
| 59 | |
| 60 | |
| 61 | def commit_files_changed(commit_hash): |
| 62 | cmd = f"git diff-tree --no-commit-id --name-only -r {commit_hash}" |
| 63 | ret, out, err = run(cmd) |
| 64 | return out.split("\n") if ret == 0 else None |
| 65 | |
| 66 | |
| 67 | def parse_pr_number(body, commit_hash, title): |
no test coverage detected
searching dependent graphs…