Skip to content

Commit 273633f

Browse files
Update Workday get-worker action to use descriptor in summary
Changed the $summary export to display the worker's descriptor (human-readable name) instead of the workerId for better user experience. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c8ebb6c commit 273633f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/workday/actions/get-worker/get-worker.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default {
2525
$,
2626
workerId: this.workerId,
2727
});
28-
$.export("$summary", `Successfully fetched worker ${this.workerId}`);
28+
$.export("$summary", `Successfully fetched worker ${response.descriptor}`);
2929
return response;
3030
},
3131
};

0 commit comments

Comments
 (0)