-
-
Notifications
You must be signed in to change notification settings - Fork 5
CheckItemStateUpdatedOnCardTrigger
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
5 revisions
Back to Automation Trigger List
Trigger that occurs when a Check-item on a Card Change State
| Option | Description |
|---|---|
state (optional) |
What state should the check-items state be (or leave 'None' to catch both states) |
var sampleTrigger = new("Remove Warning Sticker when present and you complete last Checklist Item",
new CheckItemStateUpdatedOnCardTrigger(ChecklistItemState.Complete), //<-- Our Trigger
new List<IAutomationCondition>
{
new ChecklistItemsCompleteCondition()
},
new List<IAutomationAction>
{
new RemoveStickerFromCardAction(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')