Skip to content

Jira Trigger

Triggers a workflow when events occur in Jira. The webhook is automatically registered with Jira when the workflow is published — no manual setup required.

Requires a Jira connection with admin permissions for webhook management.

Configuration

FieldDescriptionNotes
ConnectionJira connection to useRequired
EventsWhich events to listen forRequired. Multiple selection
JQL FilterOptional JQL to limit which issues triggerOptional

Supported Events

EventDescription
jira:issue_createdIssue created
jira:issue_updatedIssue updated
jira:issue_deletedIssue deleted
comment_createdComment added
comment_updatedComment edited
comment_deletedComment removed
issuelink_createdIssue link created
issuelink_deletedIssue link removed

Output

The trigger passes the full Jira webhook payload to downstream nodes. Key fields include:

FieldDescription
body.webhookEventEvent type (e.g., jira:issue_created)
body.issueFull issue object
body.userUser who triggered the event
body.changelogChanges made (for update events)

JQL Filter Example

To only trigger on issues in a specific project:

project = MYPROJECT AND status != Done

How It Works

  1. You configure the trigger with events and an optional JQL filter
  2. When you publish the workflow, the system automatically creates a webhook in your Jira instance
  3. When you re-publish or delete the workflow, the old webhook is cleaned up and a new one is registered
  4. Jira sends event payloads to your workflow's unique webhook URL

Admin Permissions

Your Jira account needs admin permissions to create webhooks. If webhook registration fails, the trigger won't receive events.