-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test report randomly appears under different workflow #25
Comments
So, this actually relates to a long-standing github issue, where the requesting run id isn't linked to the check suite id. |
yep! |
Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With v8 of the action, we've noticed that sometimes the test reports will appear not under the workflow they were created from, but another workflow that runs in parallel on the same trigger.
The two workflows:
build-and-test
: This runstest-reporting
for .NET builds. Two jobs run two builds (matrix builds, under Ubuntu and Windows) in parallel. The workflow utilizes an external reusable workflow, and where in the endtest-reporting
is called is here.validate-pull-request
: This doesn't usetest-reporting
.What we see:
build-and-test
run is correct, the test reports appear there. This is the correspondingvalidate-pull-request
run and this is also correct, no test reports there.build-and-test
run happened 5 minutes before the above one, without changing to the workflows. As you can see, the test reports are not there. They are, instead, under this is the correspondingvalidate-pull-request
run.This seems to be a bug to me. Note that the two workflows are unrelated apart from having an overlap of triggers.
Before we had the
validate-pull-request
workflow, we noticed test reports randomly missing, which is perhaps the same issue.The text was updated successfully, but these errors were encountered: