in workflow advanced properties , in which sequence the properties work

Shivaraj kumar December 24, 2019

triiger,properties,validators,post functions,conditions which executes first 

2 answers

1 vote
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 24, 2019

Two of them do not have an "order", they don't have a timing cycle

  • Properties are not actions, they're data that sits in the workflow (and other places) providing extra data, which is read by other things.
  • Triggers are not quite actions either.  They are dedicated hooks that allow actions (generally external to Jira, and usually build and automation tools) to start workflow transitions.

The other three do have a timeline.

  • A condition is run when deciding whether someone or something can use a transition at all
  • A validator runs after any user input on a transition (which may be as simple as "do transition", but could include data entry on a screen).  It usually checks for bad data
  • A post-function runs at the end of a transition, after it's passed all validators and is going to happen.  Typically they update data - the five system ones for example actually save the changes, update the index, fire events etc
0 votes
Milan Chheda [INFOSYSTA]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 24, 2019

I think, it follows:

  1. Properties
  2. Triggers
  3. Conditions
  4. Validations
  5. Post Functions

Suggest an answer

Log in or Sign up to answer