Updating Issue History/Timeline #185767
Replies: 2 comments 2 replies
-
|
Currently, the GitHub Issue timeline natively tracks core fields (like Labels, Milestones, and Assignees), but it does not automatically sync changes from Project-specific custom fields into the Issue timeline. Since Custom Fields live at the Project level and not the Issue level, they are handled by different modules in the backend. Here are two ways you can achieve this:
This is a highly requested feature for better transparency between Projects and Issues, but for now, automation via GitHub Actions is the most reliable workaround. If this helps solve your problem, please consider marking it as the answer to help other community members find this solution more easily! |
Beta Was this translation helpful? Give feedback.
-
|
GitHub does not natively update the timeline for changes in ProjectsSections-module__FieldList. Timeline events are only triggered for built-in fields like Labels, Assignees, Milestones, and linking/unlinking issues to projects. To achieve this behavior you have two options: Use GitHub Actions: Create a workflow that triggers on project_field_change or issues events. When a field in FieldList changes, the action can post a comment on the issue with who made the change, what changed, and the date. This effectively mimics timeline updates. Use the GitHub API: Poll project fields or subscribe to webhooks. When a field changes, programmatically create an event or comment on the related issue. Currently, there is no built-in way to make ProjectsSections-module__FieldList changes appear directly in the timeline. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Feature Area
Projects
Body
Hi everyone,
This is specifically related to issues that are linked to a project and the timeline section of said issue.
My team is looking for a way for the timeline to reflect when fields in the
ProjectItemSection-moduleare changed. When aLabel,Type, orAssigneechanges, or when the issue is linked to a project, the timeline shows you who performed the action, what was changed, and the date it occurred.Example
We're looking for that same functionality when fields in the
ProjectsSections-module__FieldListare changed.Is this possible? Does this already exist?
Screenshot for the more visual folks
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions