Recurring Jira issues on the last business day of the month

UPDATED 2026 · 5 MIN READ

Month-end close. Financial reporting. Payroll cutoff. A whole category of operational work is due on the last business day of the month — specifically the last business day, because it can't land on a weekend. Here's how to schedule it in Jira Cloud, and the honest tradeoffs of each route.

Native "Set to recur" can't

Jira automation can — with a business-day smart value

Automation has a dedicated smart value for exactly this: {{now.lastBusinessDayOfMonth}}. The usual pattern is a scheduled trigger that runs daily, with a condition that only fires on the right day:

Scheduled trigger: daily · Condition: {{now.format("yyyy-MM-dd")}} equals {{now.lastBusinessDayOfMonth.format("yyyy-MM-dd")}}

Because lastBusinessDayOfMonth already accounts for weekends, you don't hand-roll the date math. So automation genuinely does this — the cost is in how it does it.

What the automation route costs

The two-toggle way

Recurring Issues for Jira treats "last business day" as a setting, not a smart-value condition — and runs on its own Forge trigger, so it spends zero automation quota:

  1. Open the Recurring Issues page and click New schedule.
  2. Pick the project, issue type, and a template — add subtasks for the close checklist if you want the whole runbook generated.
  3. Set the recurrence to Monthly and enter last for the day.
  4. Turn on Skip weekends. If month-end lands on a Saturday or Sunday, the issue rolls to the preceding Friday.
  5. Optionally set a create-in-advance lead time so the checklist appears a few days early.

Where "last business day" work shows up

Which should you use?

Comfortable maintaining a daily-polling rule with smart-value conditions? Automation works. Want it as a two-toggle setup that costs no automation quota and lives in one management page — especially for finance-critical work you can't afford to have drift — that's what Recurring Issues is for.

Add Recurring Issues to Jira — free for up to 10 users

Next: where Jira automation works and where it breaks → · Back to the full guide