Missing timeline of all events happening on a project card #153239
Replies: 1 comment
-
💬 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.
-
Select Topic Area
Product Feedback
Feature Area
Projects
Body
Today, the timeline on issues provides a view over the events over the issue fields, but this feature is not available for the timeline of events on project cards.
Most existing discussions (such as https://github.com/orgs/community/discussions/143179) seem to focus on the card status, but this type of information is also very much necessary for all other fields added by the user.
Workaround using webhooks (far from ideal)
Interestingly, this data is currently available via webhook and the
projects_v2_item
event type in the "changes" object.For example, an archived card:
Or a single-select field:
So we ended up using webhook listener that dumps all these events to an Elasticsearch instance, we then re-build an object with additional metadata (the repo, the source PR or Issue), and can generate such views:
But then we have to restrict access to this content since it will potentially contain data from projects with access restrictions.
It would be much better to have this available directly inside an issue timeline, whose permission for user to see these events will be driven by their access to the project.
Thanks
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions