diff --git a/public/_redirects b/public/_redirects index 603c19027f..28155f886e 100644 --- a/public/_redirects +++ b/public/_redirects @@ -11,6 +11,8 @@ /api-intro/ /api/usage 301 /api-usage /api/usage 301 /api-usage/ /api/usage 301 +/api/eventlogs /api/activity-log/ 301 +/api/eventlogs/ /api/activity-log/ 301 /examples /integrations 301 /examples/ /integrations 301 /examples/_ /integrations/:splat 301 diff --git a/src/components/ApiReference/openapi.ts b/src/components/ApiReference/openapi.ts index 542860ff1b..772388d2fe 100644 --- a/src/components/ApiReference/openapi.ts +++ b/src/components/ApiReference/openapi.ts @@ -200,7 +200,7 @@ export const TAG_LABELS: Record = { queues: 'Queues', badges: 'Badges', simulator: 'Simulator', - eventlogs: 'Event Logs', + activity_log: 'Activity Log', statistics: 'Statistics', scheduled_freeze: 'Scheduled Freeze', merge_queue: 'Merge Queue', @@ -215,7 +215,7 @@ export const TAG_DESCRIPTIONS: Record = { queues: 'Configure and inspect merge queues for your repositories.', badges: 'Generate status badges for your repositories.', simulator: 'Simulate Mergify behavior on pull requests and configurations.', - eventlogs: 'Retrieve event logs for pull request activity.', + activity_log: 'Retrieve and aggregate the timeline of Mergify events for a repository.', statistics: 'Access merge queue and CI performance statistics.', scheduled_freeze: 'Schedule merge queue freezes for maintenance or release windows.', merge_queue: 'Control merge queue state — pause, unpause, and inspect status.', diff --git a/src/content/navItems.tsx b/src/content/navItems.tsx index 9d787ffb3b..cc51526874 100644 --- a/src/content/navItems.tsx +++ b/src/content/navItems.tsx @@ -335,7 +335,7 @@ const navItems: NavItem[] = [ { title: 'Merge Queue', path: '/api/merge-queue' }, { title: 'Statistics', path: '/api/statistics' }, { title: 'Simulator', path: '/api/simulator' }, - { title: 'Event Logs', path: '/api/eventlogs' }, + { title: 'Activity Log', path: '/api/activity-log' }, { title: 'Badges', path: '/api/badges' }, { title: 'Scheduled Freeze', path: '/api/scheduled-freeze' }, { title: 'CI Insights', path: '/api/ci-insights' },