-
Notifications
You must be signed in to change notification settings - Fork 4
StopProcessingFurtherAction
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Back to Automation Action List
An action that will stop any further processing of automations after this one for the given Webhook Receive Request
- None
Automation sampleAutomation = new("Add Start Date to Card when moved to any of the Work in Progress lists (Then stop any further processing)",
new CardMovedToListTrigger(CardMovedToListTriggerConstraint.AnyOfTheseListsAreMovedTo, "In Progress", "Review", "Test", "Deploy") { TreatListNameAsId = true },
null,
new List<IAutomationAction>
{
new SetFieldsOnCardAction(new SetCardStartFieldValue(DateTimeOffset.UtcNow)),
new StopProcessingFurtherAction() //<-- STOP
});
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')