QA Issues Delete Action

This action permits to delete selected QA issues.

The action is configured as follows:


type

"QaIssuesDelete"

string, Mandatory

locale

The language of the text for which to delete QA issues.

string, Mandatory

rules

Optional. Selects the rules to delete: An array of QA rule ID numbers.

See also Searching - QA issues

"rules": [10, 11, 12] 


int[]?, Optional

severity

Optional. Selects the rules to delete to delete by their severity.

  • 0 = information

  • 1 = warning

  • 2 = error.

Example:

"severity": [2] 


int[]?, Optional

dismissed

Optional.

  • true = only delete dismissed issues.

  • false = only deleted not dismissed issues.

  • null or missing = delete any issue


bool?, Optional

adjustTextStatus

Optional, default is false.

If true then the text status is adjusted for the issues (after any filtered issues are removed):

  • Change status to Error (red) if there is any active (not dismissed) issue left

  • Change status to None (gray) if there no active issue is left and the current status was Error (red)

Note: The text status is only changed if issues were actually updated by the action.

bool