Copy field values from reporter's previous work items in Jira Cloud

Platform Notice: Cloud Only - This article only applies to Atlassian products on the cloud platform.

Summary

Automate field copying for new work items to save time and ensure consistency.

Solution

Example use case

If there is a "Labels" field, and the reporter Jane Doe raises a new work item, we want to automatically copy the label(s) from their most recent existing work item to the new one. This can be achieved using Jira Automation.

Configuring the rule

  1. Trigger: When: Work item Created.

  2. Action: Lookup issues

    1. JQL: reporter = {{issue.reporter}}

      1. This finds all issues reported by the same user.

  3. Condition: If: {{lookupIssues.size > 0}}

    1. Ensures there is at least one previous issue from this reporter.

  4. Action: Edit Issue

    1. Field: Labels

    2. {{lookupIssues.first.labels}}

      1. This smart value copies the labels from the reporter’s most recent issue.

Notes

  • You can adapt this approach for other fields as needed.

  • To avoid automation errors, ensure the field types match when copying values (e.g., label to label, select to select).

  • For multi-value fields, using the "Copy from issue" option allows you to retain or append values as needed.

  • For advanced scenarios, you can use JSON editing for more complex field updates.

Updated on June 26, 2025

Still need help?

The Atlassian Community is here for you.