Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Note

Exclusion Filter feature is only available from version 1.5.4 onwards.

Exclusion Filters

The exclusion filter allows user to specify issues to be ignored by Out Of Office Assistant, which can be done at Out Of Office Options.

Not sure how? Refer to How to modify Out Of Office Options for more information.


Examples

Table of Contents
minLevel3


Comments on Closed issues

To exclude comments on closed issues, you can filter out issues whereby status category is done (green color status).

Code Block
statusCategory = Done


Comments by Bot

To exclude comments by a bot account via Automation.

...

Code Block
status CHANGED FROM "Waiting for customer" TO "Waiting for customer" BY bot AFTER -5m



Alternatives

You may also install the following, which can be used in the exclusion filter.

Toolkit Plugin for Jira

Has a Last commented by a User Flag and its own checkbox searcher.

CCC Last Comment

Provides search on the last comment author's username, project roles, groups and more.

Comments by a particular user

To exclude comments by a particular user, you can filter out issues whose last comment was made by user (e.g. jsmith).

Code Block
issue in lastCommentAuthor("jsmith")
Comments by a particular group

To exclude comments by members of a particular group, you can filter out issues whose last comment was made by group (e.g. developers).

Code Block
issue in lastCommentGroup("developers")

...