GitHub API error `Validation Failed`
See original GitHub issueI was unaware of the check_run_annotations
feature until I merged a PR that added this action, and I saw my job fail with this error:
2022-01-18 16:09:27 +0000 - publish-unit-test-results - INFO - reading artifacts/**/*.xml
2022-01-18 16:09:29 +0000 - publish - INFO - publishing success results for commit 3216c158b21d36f62d209672014e94160a428780
2022-01-18 16:09:31 +0000 - publish - INFO - creating check
2022-01-18 16:09:33 +0000 - publish - INFO - creating check
Traceback (most recent call last):
File "/action/publish_unit_test_results.py", line 301, in <module>
main(settings, gha)
File "/action/publish_unit_test_results.py", line 102, in main
Publisher(settings, gh, gha).publish(stats, results.case_results, conclusion)
File "/action/publish/publisher.py", line 66, in publish
check_run = self.publish_check(stats, cases, conclusion)
File "/action/publish/publisher.py", line 242, in publish_check
output=output)
File "/usr/local/lib/python3.6/site-packages/github/Repository.py", line 3645, in create_check_run
input=post_parameters,
File "/usr/local/lib/python3.6/site-packages/github/Requester.py", line 355, in requestJsonAndCheck
verb, url, parameters, headers, input, self.__customConnection(url)
File "/usr/local/lib/python3.6/site-packages/github/Requester.py", line 378, in __check
raise self.__createException(status, responseHeaders, output)
github.GithubException.GithubException: 422 {"message": "Validation Failed", "errors": [{"resource": "CheckRun", "code": "invalid", "field": "annotations"}], "documentation_url": "https://docs.github.com/rest/reference/checks#create-a-check-run"}
The repo I was working on has way more than 2000 tests, so I think it hit https://github.com/EnricoMi/publish-unit-test-result-action/blob/043296c976c53f4536194ebe3841ed720e04d496/python/publish/publisher.py#L238 more than once and tried to create a duplicate check_run
, which the GitHub API didn’t allow.
I can see 50 annotations on the Unit Test Results check just fine, which has the first 2157 passing tests and 4 skipped tests listed.
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (6 by maintainers)
Top Results From Across the Web
Getting "Validation Failed" error message when trying ... - GitHub
Using the new 2.0 RC I'm getting a "Validation Failed" message when trying to create a PR:
Read more >“Validation failed” error on searching in private repository with ...
The query failed because the GitHub App does not have permission to read the content of the private repository. The Metadata read permission ......
Read more >Unable to create github releases: Error: Validation Failed
I can see all my Repositories in the GitHubRelease@0 Task GUI (screenshot attached). But, it fails if I don't select "repositoryName: ...
Read more >Why am I getting a status code of 422 when making a call to ...
422 Unprocessable Entity - HTTP | MDN[^]. The error message is telling you that the search parameter needs to be identified by a...
Read more >Activate Github Repository: Validation failed - Drone
I see the list of all my repositories, but I can't activate any. For me or an organization. {"level":"debug","msg":"api: root access granted"," ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You got it, our test names are extremely long. It’s a private repo so I can’t share the list with you…
I’ll try with debug logging, and also try out the updated action.
The limit of 50 annotations did not change, I found it: https://docs.github.com/en/rest/reference/checks#create-a-check-run
It is hidden under
Properties of the output object
.The problem might be that I am creating all these checks, not creating the check with the first 50 annotations and then updating it with more annotations. Will test and revise this.