Skip to content

fix(task-manager): use event._id instead of groupHash in issue event URL#569

Open
Copilot wants to merge 2 commits into
masterfrom
copilot/fix-incorrect-event-url
Open

fix(task-manager): use event._id instead of groupHash in issue event URL#569
Copilot wants to merge 2 commits into
masterfrom
copilot/fix-incorrect-event-url

Conversation

Copilot AI commented Jun 10, 2026

Copy link
Copy Markdown
Contributor

The GitHub issue body generated by the task-manager worker contained an incorrect event URL, using groupHash as the event identifier instead of the event's _id.

Change

  • workers/task-manager/src/utils/issue.ts: Replace event.groupHash with event._id in the event URL template
- const eventUrl = `${garageUrl}/project/${projectId}/event/${event.groupHash}`;
+ const eventUrl = `${garageUrl}/project/${projectId}/event/${event._id}`;

Resulting URL format: /project/<project_id>/event/<event_id>

Copilot AI linked an issue Jun 10, 2026 that may be closed by this pull request
Copilot AI changed the title [WIP] Fix incorrect event URL in Issue template fix(task-manager): use event._id instead of groupHash in issue event URL Jun 10, 2026
Copilot AI requested a review from neSpecc June 10, 2026 18:00
@neSpecc neSpecc marked this pull request as ready for review June 10, 2026 18:03
@codex-assistant

Copy link
Copy Markdown

Thanks for adding a description — the PR is now marked as Ready for Review.

2 similar comments
@codex-assistant

Copy link
Copy Markdown

Thanks for adding a description — the PR is now marked as Ready for Review.

@codex-assistant

Copy link
Copy Markdown

Thanks for adding a description — the PR is now marked as Ready for Review.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Task Manager Worker: incorrect event url

2 participants