Closed as released, but the public ROR record still appears unchanged #190560
Replies: 2 comments
-
|
💬 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.
-
|
This scenario is not a GitHub platform bug, but rather a common workflow disconnect between GitHub's issue tracker and an external deployment pipeline. The Here’s how to handle this efficiently on GitHub while avoiding duplicate tracking: 🔍 1. Verify Deployment & Sync Status FirstBefore escalating, confirm whether the change actually left GitHub and reached the external system:
💬 2. Comment on the Original Issue (Do Not Duplicate)GitHub's tracking system relies on centralized context. Instead of opening a new issue ( This preserves the audit trail, notifies watchers, and prevents fragmented triage. 🔄 3. Reopen the Issue If the Sync FailedOnly users with Write access or the original author can reopen closed issues. If maintainers confirm the deployment was skipped or failed, request a reopen:
If you lack permissions, a maintainer can reopen it via the UI or by pushing a commit referencing 🛠 4. Use Cross-Referencing & Project Labels
🌐 5. Bypass Local Caching to Confirm StateWeb UIs often cache aggressively. Verify the live backend state using the ROR API: curl -s -H "Cache-Control: no-cache" \
https://api.ror.org/organizations/05xaz0w84 | \
jq '{name: .name, status: .status, last_modified: .last_modified}'If the API shows the updated metadata but the web UI does not, it's a frontend cache issue. Mention this explicitly so maintainers can route it to their web/CDN team rather than the data pipeline. ✅ Best Practices for Future Requests
For official guidance on managing issue lifecycles and cross-referencing, see: By keeping follow-ups threaded to the original issue, verifying external state via API, and deferring to the project's documented sync cadence, you'll minimize confusion and help maintainers resolve deployment gaps faster. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Bug
Topic area
Other
Body
I am trying to understand how best to proceed when an issue in a public repository is marked as completed and released, but the corresponding public-facing record still appears unchanged. In this case, I expected the public ROR record to reflect the approved metadata changes after the issue had been processed, included in milestone v1.74, marked as “Record updated in release v1.74,” closed as completed, and given the project status “Done (Released on Production).” However, although the issue history indicates that the request was treated as resolved and published, the current public ROR page for the same record still appears not to reflect those approved changes.
For reference, the issue history showing the request as completed and released is here:
ror-community/ror-updates#25164
The current public ROR record for the same entry is here:
https://ror.org/05xaz0w84
Because of this mismatch between the issue history and the current public-facing record, a more precise follow-up request was later submitted here:
ror-community/ror-updates#32183
I would appreciate guidance on the best way to handle a situation like this while avoiding duplicate requests and confusion.
Beta Was this translation helpful? Give feedback.
All reactions