Skip to content

AddCommentToCardAction

Rasmus Wulff Jensen edited this page Jun 7, 2023 · 4 revisions

Back to Automation Action List

Add a Comment to the Card

Input options

Option Description
Comment (Required) Comment to add

Examples

Automation sampleAutomation = new Automation("Add Card is moved to on of the 'Done' column, Add a @Reply comment to the sales team member.",
    new CardMovedToListTrigger(CardMovedToListTriggerConstraint.AnyOfTheseListsAreMovedTo, "Done") { TreatListNameAsId = true },
    null, // No conditions necessary
    new List<IAutomationAction>
    {
        new AddCommentToCardAction("@SalesTeamUser The work is now done :-)") //<-- Our Action
    });

See Also

Clone this wiki locally