Pipeline stages have some kind of numeric ordering, or category

Calum
Calum Member Posts: 16 VERIFIED MEMBER
5 Up Votes Photogenic Name Dropper First Comment

Lots of my automations are like AND stage is ="Pending" AND stage is "Draft" AND stage is "xyz"
If we had the option like available in Jira we could categories stages and then I could simply do If stage_category is "pre-signature" then it would be a catch all for multiple stages.

Or if pipeline stages were ordered I could do if Stage is < 2 then apply action.

Or alternativity allow we to use IN so my logic becomes stage is in "Pending, Draft, xyz"

2
2 votes

Submitted · Last Updated

Comments

  • Guy Renko
    Guy Renko Member Posts: 33 VERIFIED MEMBER
    10 Comments 5 Likes Name Dropper Photogenic
    edited June 11 #2

    Can't you make a filter called "pre-signature" with:

     AND stage is ="Pending" AND stage is "Draft" AND stage is "xyz"

    and then use the filter as the condition in the automation?