Skip to content

AddCommentToCardAction

Rasmus Wulff Jensen edited this page Nov 1, 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("When Card is moved to 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
    });
Clone this wiki locally