-
-
Notifications
You must be signed in to change notification settings - Fork 5
ChecklistItemsIncompleteCondition
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Back to Automation Condition List
Condition that check if a Card have one or more incomplete check-items on any of its checklists
- None
Automation sampleAutomation = new Automation("Add Warning Sticker when card moved to 'Done' and not all checklist are complete",
new CardMovedToListTrigger(CardMovedToListTriggerConstraint.AnyOfTheseListsAreMovedTo, "Done") { TreatListNameAsId = true },
new List<IAutomationCondition>
{
new ChecklistItemsIncompleteCondition() // <-- Our condition
},
new List<IAutomationAction>
{
new AddStickerToCardAction(new Sticker(StickerDefaultImageId.Warning))
});If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')