InTouch Hub · Blue Isle Software

Jira Stale Ticket Reminder

Remind owners of stale Jira tickets by searching for open issues with no recent update and notifying the workflow's subscribers.

jirareminderticketsproductivity

Jira Stale Ticket Reminder

Find open Jira tickets that have gone quiet and remind the team so nothing slips through the cracks.

Use case

Tickets often stall silently — the assignee gets pulled onto something else, or a blocker quietly lingers. Running this on a schedule (e.g. every weekday morning) surfaces aging work before it becomes a problem and keeps boards honest without anyone manually combing through Jira.

What it does each run

  1. findStale — calls the jira connector with operation: search and a JQL filter for issues that are not Done and have had no update in the last 7 days, ordered oldest-first (maxResults: 50). The connector publishes two outputs: result (the raw Jira search JSON, whose issues array holds each ticket's key and fields) and status (the HTTP status).
  2. notifyOwners — sends a message notification to the workflow's contacts. The body embeds {{findStale.result}} (the raw issues JSON) and {{findStale.status}} so owners can see exactly which tickets are stale and review, update, or reassign them.

Note: connector tools publish only result and status. This workflow reads the stale-ticket list straight out of {{findStale.result}}; it does not invent any per-field outputs like count or issues.

Required credentials

Tuning

Scheduling

Attach a schedule (e.g. weekdays at 9:00) so the reminder lands at the start of the day. With no schedule it runs on demand.