-
Notifications
You must be signed in to change notification settings - Fork 3
RemoveChecklistFromCardAction
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Back to Automation Action List
This Automation Action Removes a Checklist from a Card if it is present
Option | Description |
---|---|
ChecklistNameToRemove (Required) |
Name of the Checklist to remove |
Automation sampleAutomation = new Automation("Remove Bug DoD Checklist when Label 'Bug' is removed from the card",
new LabelRemovedFromCardTrigger(LabelRemovedFromCardTriggerConstraint.AnyOfTheseLabelsAreRemoved, "Bug") { TreatLabelNameAsId = true},
null, //No conditions
new List<IAutomationAction>
{
new RemoveChecklistFromCardAction("Bug Definition of Done")
});
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')