Blog ·

Jira Automation pricing: what it costs and what a rule spends

There is no separate Jira Automation price list. Automation comes with your Jira subscription, and what you pay for is usage: Atlassian meters automation in steps, gives each plan a monthly step allowance, and charges for anything above it. As of September 2026 the allowance is 150 steps per subscription on Free, 400 steps per user on Standard, 750 on Premium and 1,000 on Enterprise, pooled across your organisation's Atlassian apps, with extra usage billed at $0.50 per 1,000 additional steps. The practical question is therefore not "what does Jira Automation cost" but "how much of my allowance does this rule spend, and what happens when the pool runs dry" — and the answer is different for a scheduled rule that creates one work item than for one that loops over a JQL result.

What "Jira Automation pricing" actually means

Most pricing guides you will find answer a different question: what the Jira plans cost. Automation is not one of those line items. It is included, then metered, and quite a few pages still describe an older model that counted whole rule runs rather than steps.

The current model, from Atlassian's own usage documentation (checked September 2026), is this: "Automation usage is measured in steps. An automation step is a single executed part of an automation flow, including triggers, conditions, actions, branches, and loops." Each of those components counts as one step every time it runs, and steps are counted for flows that finish as success, no-actions-performed, some-errors, aborted and no-match alike — so a flow that fires and decides to do nothing has still spent its trigger and its condition.

Two consequences matter before you budget anything:

What each Jira plan allows

As of September 2026, Atlassian's documented monthly step allowances are:

Jira plan Monthly step allowance
Free 150 per subscription
Standard 400 per user
Premium 750 per user
Enterprise 1,000 per user

On a per-user plan the pool scales with your licence count, so a ten-seat Standard site has 4,000 steps a month to spend across everything automated in the organisation. That sounds generous until a single scheduled flow with a JQL query starts iterating.

What happens when the allowance runs out

Atlassian documents two outcomes, and which one you get depends on a setting you may not have looked at:

The second is the one to plan for, because it is silent in exactly the way a recurring ticket is silent. Nothing errors. The Monday maintenance ticket simply does not appear, and the first person to notice is whoever goes looking for it a week later. If your recurring work is compliance work — access reviews, backup restore tests, certificate renewals — a missing cycle is the cycle the auditor asks about.

What a recurring rule actually spends

Take the simplest useful case: a scheduled flow that creates one work item on a fixed schedule. The trigger runs, the create action runs. That is two steps per firing, plus one more for every condition, branch or loop you add. A daily rule therefore spends roughly 60–90 steps a month; a weekly one, under 10.

By that arithmetic, recurring creation is cheap, and for a handful of rules the allowance will never be your problem. The cost shows up in two other places:

  1. Scheduled flows that work on a JQL result. Atlassian's scheduled trigger lets you "enter a JQL query", after which "actions in this flow will execute on the work items included in the query" — and branches and loops are on the list of components that count as a step each time they run. A weekly flow that sweeps two hundred work items is a different animal from one that creates a ticket, and it draws from the same pool your recurring tickets need.
  2. Everything else in the organisation. Your recurring rules do not compete with a budget of their own. They compete with every other flow across every Atlassian app you run, and they lose quietly, because they are the ones nobody is watching.

There is a second behaviour worth knowing before you rely on a schedule: Atlassian documents that "scheduled flows that reach a Failure status for 10 consecutive executions will disable automatically" (checked September 2026). That is sensible engineering, and it means a schedule can switch itself off in the background. Whether anyone finds out depends on whether somebody is reading audit logs.

Who should stay with Jira Automation

Plainly: most teams, for most recurring work.

When a scheduling app is the better fit

The case for moving recurring creation out of Automation is not usually money. It is that recurring work has different failure modes from event-driven work, and a metered shared pool is a bad place to keep something that has to appear on the same date every month.

Marketplace scheduling apps exist for exactly this, most of them licensed per user through Atlassian. Recurring Work Items for Jira is one of them, and it is the one we build: rules live in a single Jira project, run on the app's own schedule rather than your automation allowance, and each one keeps a run history of what it created and when.

What that buys, concretely:

What it does not do, so that nobody buys it twice: no cron expressions, no cross-project rules, and nothing event-driven. It creates scheduled work items in one project, and that is the whole of it. If you need cron or a multi-project rule, stay with Automation or look at a Marketplace app that offers them.

A comparison, honestly

Jira Automation Recurring Work Items for Jira
How it is paid for Included in your Jira plan, metered in steps; $0.50 per 1,000 steps over the allowance (as of September 2026) Free up to 10 users, then $5.50 per user per year
Recurring schedule Fixed rate or cron expression Daily / weekly / monthly by date / monthly by ordinal weekday
Non-working days Handled by whatever logic you build Per-project calendar, per-rule policy: run, shift, or skip
Scope One rule can cover many projects One project per rule, by design
Beyond creating work items Transitions, branches, JQL sweeps, cross-product actions Nothing — scheduled creation only
Record of past cycles Audit log Run history per rule, with next-run prediction

Before you change anything, measure

The cheapest move is not buying anything. Open your organisation's automation usage, find out whether extra usage is enabled, and look at which flows are actually spending the pool — it is very rarely the recurring ones, and if a JQL-driven sweep is the culprit then moving your maintenance tickets elsewhere solves nothing.

If the numbers say recurring work is worth taking off the meter, our walkthrough of the three ways to do recurring tasks in Jira compares cloning, Automation and an app side by side, and the install guide takes about five minutes.

Every figure attributed to Atlassian above was read from Atlassian's own automation usage and trigger documentation in September 2026. Allowances and prices change; check them against the current pages before you budget on them.