This routine is available in v6.1.

note

The use of this routine requires the Power Scripts for Jira add-on be installed and licensed.

The use of this routine requires the Power Scripts for Jira add-on be installed and licensed.

Syntax

isIssueFieldChanged(field)

Package

Alias

Pkg Usage

Description

Verifies if the field was changed during the specific event.

Verifies if the field was changed during the specific event.

Parameters

Parameter name

Type

Required

Description

Return Type

Boolean (true/false)

Returns 'true' if the field was changed during the specific event and 'false' otherwise.

Example

if(isIssueFieldChanged("description")) {
    logPrint("ERROR", "Event: Field 'description' IS CHANGED ");
} else {
    logPrint("ERROR", "Event: Field 'description' IS NOT changed ");
}

See also