diff --git a/services/github/src/handlers.js b/services/github/src/handlers.js index e83b9ea78cc..9c914a9737a 100644 --- a/services/github/src/handlers.js +++ b/services/github/src/handlers.js @@ -387,7 +387,7 @@ async function deprecatedStatusHandler(message) { } debug(`Attempting to update status for ${build.organization}/${build.repository}@${build.sha} (${state})`); - const target_url = libUrls.ui(this.context.cfg.taskcluster.rootUrl, `/task-group-inspector/#/${taskGroupId}`); + const target_url = libUrls.ui(this.context.cfg.taskcluster.rootUrl, `/tasks/groups/${taskGroupId}`); try { await instGithub.repos.createStatus({ owner: build.organization, @@ -729,7 +729,7 @@ async function taskGroupCreationHandler(message) { const statusContext = `${this.context.cfg.app.statusContext} (${eventType.split('.')[0]})`; const description = `TaskGroup: Pending (for ${eventType})`; - const target_url = libUrls.ui(this.context.cfg.taskcluster.rootUrl, `/task-group-inspector/#/${taskGroupId}`); + const target_url = libUrls.ui(this.context.cfg.taskcluster.rootUrl, `tasks/groups/${taskGroupId}`); // Authenticating as installation. const instGithub = await this.context.github.getInstallationGithub(installationId); diff --git a/services/github/test/handler_test.js b/services/github/test/handler_test.js index 66460361757..526068c6d30 100644 --- a/services/github/test/handler_test.js +++ b/services/github/test/handler_test.js @@ -16,7 +16,7 @@ helper.secrets.mockSuite(testing.suiteName(), ['taskcluster'], function(mock, sk helper.withFakeGithub(mock, skipping); helper.withPulse(mock, skipping); - const URL_PREFIX = 'https://tc-tests.example.com/task-group-inspector/#/'; + const URL_PREFIX = 'https://tc-tests.example.com/tasks/groups/'; let github = null; let handlers = null;