Skip to content

Commit

Permalink
feat: add markdown_description to clickup create-task piece
Browse files Browse the repository at this point in the history
  • Loading branch information
zaaakher committed Aug 4, 2024
1 parent 409e5e4 commit cd882db
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ export const createClickupTask = createAction({
displayName: 'Task Description',
required: true,
}),
markdown_description: Property.LongText({
description: 'The description of the task to create (in markdown)',
displayName: 'Task Description (Markdown)',
required: false,
}),
},
async run(configValue) {
const { list_id, name, description, status_id, priority_id, assignee_id } =
Expand Down

0 comments on commit cd882db

Please sign in to comment.