#flow run if field has been changed

4 messages · Page 1 of 1 (latest)

fair yew
#

is it possible to have a flow to run an action only if a certain value has actually been changed? concrete use case: changing URL > trigger some CI/CD pipeline to rebuilt ssg

bronze tartan
#

A Filter flow on the update event could do the job. A Read Operation can read the URL of your item before its update. If this URL is not the same as the one in the payload of the Flow, then you can trigger your CI/CD operations.

fair yew
#

ah. so i can read the current value within the flow before the payload is applied / the item is being updated

#

interesting