Approval Group Inclusion Expressions
these expressions determine when an approval stage should be included based on the changes in a scenario scenariochanges sum{change cost} > 500 use when you want approval based on the total cost of all changes combined example require vp approval when the combined salary impact of all changes exceeds $500,000 scenariochanges any{department="engineering"} use when you want approval if at least one change matches a condition example include the engineering director as an approver whenever any change in the batch affects an engineering employee scenariochanges all{department="engineering"} use when you want approval only if every change matches a condition example route to a specialized engineering approval chain only when the entire batch contains engineering changes (skip it if mixed departments) scenariochanges all{department="engineering"} && title="ceo" use when you want to combine a condition about the changes with a condition about who is submitting the request example only include this approval stage when all changes are in engineering, and the person submitting the request is the ceo this lets you create different approval flows based on both what's changing and who's requesting it
