Skip to content

Commit dce80ad

Browse files
committed
Fix CI issues: increment versions and remove trailing spaces
- Bump component version from 0.2.0 to 0.2.1 - Bump package version from 0.8.2 to 0.8.3 - Remove trailing spaces to fix linting errors
1 parent 8a02225 commit dce80ad

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

components/zendesk/actions/update-ticket/update-ticket.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Update Ticket",
66
description: "Updates a ticket. [See the documentation](https://developer.zendesk.com/api-reference/ticketing/tickets/tickets/#update-ticket).",
77
type: "action",
8-
version: "0.2.0",
8+
version: "0.2.1",
99
props: {
1010
app,
1111
ticketId: {
@@ -184,17 +184,17 @@ export default {
184184

185185
const attachmentCount = ticketComment.uploads?.length || 0;
186186
const assigneeUpdated = assigneeId || assigneeEmail;
187-
187+
188188
let summary = `Successfully updated ticket with ID ${response.ticket.id}`;
189-
189+
190190
const updates = [];
191191
if (attachmentCount > 0) {
192192
updates.push(`${attachmentCount} attachment(s)`);
193193
}
194194
if (assigneeUpdated) {
195195
updates.push("assignee");
196196
}
197-
197+
198198
if (updates.length > 0) {
199199
summary += ` with ${updates.join(" and ")}`;
200200
}

components/zendesk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/zendesk",
3-
"version": "0.8.2",
3+
"version": "0.8.3",
44
"description": "Pipedream Zendesk Components",
55
"main": "zendesk.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)