Description
When hydraapplepipeline creates an issue from TestFlight feedback, the Apple submission timestamp is included in the description body ('Submitted: ...') but not in custom_fields. The issue created_at reflects the pipeline processing time, which is typically 3-5 minutes after the actual submission.
This means the real feedback time is not queryable and not visible when scanning the issue list — you have to open the issue and read the description.
Fix: add submitted_at to custom_fields when creating the issue, alongside the existing apple_feedback_id, device_model, feedback_kind, and os_version fields.
Example current custom_fields:
apple_feedback_id, device_model, feedback_kind, os_version
After fix:
apple_feedback_id, device_model, feedback_kind, os_version, submitted_at
The submitted_at value is already available in the TestFlight webhook/API payload that the pipeline processes.