feat: include issue URL in workerComplete notifications for better tracking
This commit is contained in:
@@ -42,6 +42,7 @@ export type NotifyEvent =
|
||||
project: string;
|
||||
groupId: string;
|
||||
issueId: number;
|
||||
issueUrl: string;
|
||||
role: "dev" | "qa";
|
||||
result: "done" | "pass" | "fail" | "refine" | "blocked";
|
||||
summary?: string;
|
||||
@@ -95,6 +96,7 @@ function buildMessage(event: NotifyEvent): string {
|
||||
if (event.nextState) {
|
||||
msg += ` → ${event.nextState}`;
|
||||
}
|
||||
msg += `\n🔗 ${event.issueUrl}`;
|
||||
return msg;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user