Pull Requests missing from milestones #202166
Replies: 2 comments 3 replies
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Yeah this sounds like a real indexing/sync bug on GitHub's side, not something wrong with how you're attaching milestones. A couple of notes from similar cases:
Workarounds that sometimes kick it loose:
mutation {
updatePullRequest(input: {pullRequestId: "PR_NODE_ID", milestoneId: null}) {
pullRequest { id }
}
}then set it again with the real If that still doesn't surface them, this needs GitHub Support. Open a ticket at https://support.github.com/ and include: repo names (even private is fine for support), milestone titles, a couple of PR numbers that are missing, and that both the UI and the REST filter are empty while older PRs still show. That's enough for them to check the search index for those associations. Happy to look at a public repro if you have one, but from what you described this is almost certainly on their end. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Bug
Body
Hi,
For the past few days, there has been a syncing issue with milestones.
If I add a milestone to a pull request, then go to the milestone page, the pull request doesn't appear in the list. The same happens if I use the API to get PRs filtered by milestone, the PR is missing.
PRs attached before this week are displayed correctly and returned by API.
I've tried everything to "force sync":
Nothing works, and the problem occurs on different private repositories, with different milestones and pull requests.
Can you please take a look?
Beta Was this translation helpful? Give feedback.
All reactions