Skip to content

Commit 0a90a91

Browse files
committed
[FEATURE] New Trello action
1 parent dae0a6a commit 0a90a91

File tree

44 files changed

+255
-51
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+255
-51
lines changed

components/trello/actions/add-attachment-to-card/add-attachment-to-card.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "trello-add-attachment-to-card",
77
name: "Add Attachment To Card",
88
description: "Adds a file attachment on a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-attachments-post)",
9-
version: "1.0.2",
9+
version: "1.0.3",
1010
type: "action",
1111
props: {
1212
app,

components/trello/actions/add-checklist/add-checklist.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "trello-add-checklist",
55
name: "Add Checklist",
66
description: "Adds a new checklist to a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-checklists-post).",
7-
version: "0.2.2",
7+
version: "0.2.3",
88
type: "action",
99
props: {
1010
app,

components/trello/actions/add-comment/add-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "trello-add-comment",
55
name: "Add Comment",
66
description: "Create a new comment on a specific card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-actions-comments-post).",
7-
version: "0.2.2",
7+
version: "0.2.3",
88
type: "action",
99
props: {
1010
app,

components/trello/actions/add-existing-label-to-card/add-existing-label-to-card.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "trello-add-existing-label-to-card",
55
name: "Add Existing Label to Card",
66
description: "Adds an existing label to the specified card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-idlabels-post).",
7-
version: "0.1.2",
7+
version: "0.1.3",
88
type: "action",
99
props: {
1010
app,

components/trello/actions/add-member-to-card/add-member-to-card.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "trello-add-member-to-card",
55
name: "Add Member to Card",
66
description: "Adds a member to the specified card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-idmembers-post).",
7-
version: "0.2.2",
7+
version: "0.2.3",
88
type: "action",
99
props: {
1010
app,

components/trello/actions/archive-card/archive-card.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "trello-archive-card",
55
name: "Archive Card",
66
description: "Archives a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-put).",
7-
version: "0.2.2",
7+
version: "0.2.3",
88
type: "action",
99
props: {
1010
app,

components/trello/actions/complete-checklist-item/complete-checklist-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "trello-complete-checklist-item",
55
name: "Complete a Checklist Item",
66
description: "Completes an existing checklist item in a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-checkitem-idcheckitem-put).",
7-
version: "0.2.2",
7+
version: "0.2.3",
88
type: "action",
99
props: {
1010
app,

components/trello/actions/create-board/create-board.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "trello-create-board",
66
name: "Create a Board",
77
description: "Create a new Trello board or copy from an existing one. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-post).",
8-
version: "0.2.2",
8+
version: "0.2.3",
99
type: "action",
1010
props: {
1111
app,

components/trello/actions/create-card/create-card.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "trello-create-card",
88
name: "Create Card",
99
description: "Creates a new card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-post).",
10-
version: "1.0.2",
10+
version: "1.0.3",
1111
type: "action",
1212
props: {
1313
app,

components/trello/actions/create-checklist-item/create-checklist-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "trello-create-checklist-item",
66
name: "Create a Checklist Item",
77
description: "Creates a new checklist item in a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-checklists/#api-checklists-id-checkitems-post).",
8-
version: "0.3.0",
8+
version: "0.3.1",
99
type: "action",
1010
props: {
1111
app,

0 commit comments

Comments
 (0)