Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions public/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment thread
sileht marked this conversation as resolved.
/examples /integrations 301
/examples/ /integrations 301
/examples/_ /integrations/:splat 301
Expand Down
4 changes: 2 additions & 2 deletions src/components/ApiReference/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export const TAG_LABELS: Record<string, string> = {
queues: 'Queues',
badges: 'Badges',
simulator: 'Simulator',
eventlogs: 'Event Logs',
activity_log: 'Activity Log',
statistics: 'Statistics',
scheduled_freeze: 'Scheduled Freeze',
merge_queue: 'Merge Queue',
Expand All @@ -215,7 +215,7 @@ export const TAG_DESCRIPTIONS: Record<string, string> = {
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.',
Expand Down
2 changes: 1 addition & 1 deletion src/content/navItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand Down