()
| 39 | |
| 40 | |
| 41 | def get_common_commit_sha(): |
| 42 | command = "git merge-base origin/main HEAD" |
| 43 | proc = run_subprocess(command) |
| 44 | return proc.stdout.strip() |
| 45 | |
| 46 | |
| 47 | def get_main_jenkins_build_number(github, common_commit): |
no test coverage detected
searching dependent graphs…