We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I tried to enable GitHub's merge queue on a project that enables reporting PR builds on GitHub and sets it as a required status check before merging.
The PR is automatically merged after all checks have passed.
GitHub waits for ReadTheDocs to report the PR status check, which is never reported. The PR stays in the queue and is never merged.
I had to add on: merge_group: [ref] to my GHA workflow file to fix a similar problem with the other required status checks run with GitHub Actions.
on: merge_group:
The text was updated successfully, but these errors were encountered:
@humitos I was just about to file a similar report. This is a blocker for projects wanting to use RTD with Merge Queues enabled.
I want to add that GitHub issues a push event in addition to merge_group, but RTD doesn't seem to react to it either.
push
merge_group
This is what a deadlock this causes looks like:
Sorry, something went wrong.
No branches or pull requests
Details
I tried to enable GitHub's merge queue on a project that enables reporting PR builds on GitHub and sets it as a required status check before merging.
Expected Result
The PR is automatically merged after all checks have passed.
Actual Result
GitHub waits for ReadTheDocs to report the PR status check, which is never reported. The PR stays in the queue and is never merged.
Related?
I had to add
on: merge_group:
[ref] to my GHA workflow file to fix a similar problem with the other required status checks run with GitHub Actions.The text was updated successfully, but these errors were encountered: