Pushes a production status description table to the Jira ticket linked to the specified job. The endpoint appends a Jira wiki markup table to the ticket's existing description, showing the current serial number distribution across process steps for each path, timestamped with today's date. This creates a running log of production progress directly on the Jira ticket.
Both the enabled and pushEnabled toggles must be active in App Settings. The job must have a linked Jira ticket (jiraTicketKey must be set), and the job must have at least one path defined.
The push operation:
Fetches the current ticket description from Jira via GET
Computes the step distribution (serial counts per step) for each path
Builds a Jira wiki markup table with step names as columns and today's counts as a data row
The description table is appended to the existing ticket description, not replaced. Each push adds a new timestamped table, creating a historical log.
The wiki markup format uses Jira's table syntax: || Header || for header cells and | Data | for data cells.
Each path generates its own table section, prefixed with the path name in bold.
The "Completed" column shows the count of serials that have finished all steps (step index = -1).
If the Jira API call fails during the push, the error is caught and returned as { success: false, error: "..." } rather than throwing a 502.
Pushing to the same ticket multiple times is safe — each push appends a new dated row.
The mode field from PushToJiraInput is not used by this endpoint. The push endpoint always writes a description table. For comment summaries, use the Comment endpoint.