-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
Checks appear under a different workflow #17
Comments
Hi @khaeru, Thanks for your report. Unfortunately the only information the API accepts when creating a check is the SHA (see here). Sorry, I can't think of another solution :/ |
Hm, that's a good suggestion—thanks! Maybe it's alphabetical— I did peek at that documentation page, but despite being verbose it's not too illuminating (for me) about which fields are related to which parts of the workflow file(name), or how. |
This seemed to work: I renamed to Thanks again for the hint! |
Thanks for this great action. I am experiencing similar issues with my workflow name. I have a matrix of checks I want to run based on a slash command in the PR comments. I have set up a slash-command-dispatch workflow to trigger a workflow via repository dispatch. That workflow creates a check and then updates it. It works great! Example PR... ...Except the name of the check is picking up the name of one of my other workflows. 🤦 Here Does this have to do with "check suites"? Is there any other possible workaround? Can I create my own suite? |
According to the API you can create your own suite, but I didn't see from the documentation how that would help unfortunately... This is a really odd behavior and I don't have any idea why this is happening, sorry :/ Maybe someone with more understanding of Github Actions might be able to help? |
Hey @rabernat - did you ever discover a solution to this issue? I'm seeing the same - the checks are appearing in an unusual place in the UI for us too. |
Thanks for the useful action! It works well, but I'm having trouble configuring it properly to overcome a minor weirdness in the effects. Perhaps this is just my limited knowledge of the API semantics.
I have two workflow files. In cq.yml (this is trimmed to illustrate the issue):
In pytest.yml:
See here: https://github.com/transportenergy/database/pull/64/checks
What I expect: that the check output appears under the "Test suite & diagnostics" section with the three other jobs corresponding to the file in which appears (the action is actually used within one of these jobs).
Instead, I observe: it appears under the "Code quality" section defined by the other file.
Is there a simple way to avoid this?
The text was updated successfully, but these errors were encountered: