Currently, there is a common check-checksum job run after repro-ci in both config-pr-1-ci.yml and config-schedule-2-start.yml which downloads the test artifact and adds the test results to the given PR.
Instead of doing the same job twice, incorporate it into the test-repro.yml reusable workflow. If it is a possibility that someone might call this workflow while not on.pull_request, make the check-checksum part only run if: github.event_name == 'pull_request'.
Currently, there is a common
check-checksum
job run afterrepro-ci
in bothconfig-pr-1-ci.yml
andconfig-schedule-2-start.yml
which downloads the test artifact and adds the test results to the given PR.Instead of doing the same job twice, incorporate it into the
test-repro.yml
reusable workflow. If it is a possibility that someone might call this workflow while noton.pull_request
, make thecheck-checksum
part only runif: github.event_name == 'pull_request'
.