Skip to main content
Skip table of contents

Sync Assignee and Reporter fields

We have 2 options in syncing the real assignee and reporter value.

  • The default feature uses the sync user as the reporter. (this is the user set on the config)

Sync People Fields

YAML
serverfrom:
  # add this section to the serverFrom
  syncPeopleFields:
    assignee: true
    reporter: true

this will sync the

  • user on the assignee field

  • user on the reporter field

Notes: to prevent failure in creating or updating the synced issue

❗make sure the usernames are available on both the serverFrom and serverTo

❗make sure that the user has the correct group/roles and that the user can be assigned to the issue

❗make sure that the users are not inactivated

Sync User Mapping

YAML
serverTo: 
  # add this section to the serverTo
  # set this to true if you plan to use the userFieldMapping feature. this will let you map user fields.
  userMappingEnabled: true
  userFieldMapping:
    reporter:
      fieldTo: reporter
      userMapping:
        admin: mark.admin
        mark.admin: admin
        # or the account ID when using jira cloud
        5cffce78906a670bc885216c: 5cffce78906a670bc885216c
    assignee:
      fieldTo: assignee
      userMapping:
        admin: mark.admin
        mark.admin: admin
        # or the account ID when using jira cloud
        5cffce78906a670bc885216c: 5cffce78906a670bc885216c
  • userMapping explanation

    • username on the left side is the user on the sourceServer (serverFrom)

    • username on the right side is the user on the targetServer (serverTo)

YAML
userMapping:
	# source user: # target user
	admin: mark.admin

Notes: to prevent failure in creating or updating the synced issue

❗make sure the usernames in the mapping are available in their corresponding servers

❗make sure that the user has the correct group/roles and that the user can be assigned to the issue

❗make sure that the users are not inactivated

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.