// פיקסצ'ר ל-scripts/int9-guard.mjs --self-test. לא קוד-ריצה. // // שתי קריאות ל-issues.update שאינן נוגעות ב-status כלל — לא הפרה. // השנייה בודקת שגבול-מילה אמיתי: "statusLabel" אינו תואם ל-/\bstatus\b/ // (אין גבול-מילה בין ה-s של status ל-L של Label). export async function renameOnly(ctx: any, target: any, statusLabel: string) { await ctx.issues.update(target.id, { title: "x" }, target.companyId); await ctx.issues.update( target.id, { description: statusLabel }, target.companyId, ); }