Skip to content

Commit 16d0ad0

Browse files
authored
docs: add support page (#9555)
This adds a support page that can redirect users to the right channel and answers some common questions. Related-to: MRGFY-6056
1 parent e52f5c9 commit 16d0ad0

File tree

4 files changed

+70
-3
lines changed

4 files changed

+70
-3
lines changed

src/components/Footer/footer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export const helpCategory: Category = {
9696
},
9797
{
9898
text: 'Support',
99-
href: 'mailto:support@mergify.com',
99+
href: 'https://docs.mergify.com/support/',
100100
},
101101
{
102102
text: 'Privacy Policy',

src/content/docs/index.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { BiRuler, BiBadgeCheck, BiCut, BiSolidCoinStack } from 'react-icons/bi';
1414
import { TbPackages, TbGitBranch, TbTopologyStarRing3 } from 'react-icons/tb';
1515
import { TiFlowParallel } from 'react-icons/ti';
1616
import { FaUserShield, FaRegLightbulb, FaGear, FaTrafficLight, FaRegCirclePause, FaBug, FaMoneyBill1, FaSnowflake, FaStairs, FaDiagramProject } from 'react-icons/fa6';
17-
import { FaShieldAlt } from 'react-icons/fa';
17+
import { FaLifeRing, FaShieldAlt } from 'react-icons/fa';
1818
import { AiOutlineDeploymentUnit, AiOutlineFile, AiOutlineApi } from 'react-icons/ai';
1919
import { LiaShareAltSolid } from 'react-icons/lia';
2020
import { FiType } from 'react-icons/fi';
@@ -219,6 +219,9 @@ import { SlRefresh, SlSpeedometer } from 'react-icons/sl';
219219
<Docset title="Security" path="/security" icon={FaShieldAlt}>
220220
Security & permissions.
221221
</Docset>
222+
<Docset title="Support" path="/support" icon={FaLifeRing}>
223+
Contact channels & response goals.
224+
</Docset>
222225
<Docset title="Billing" path="/billing" icon={FaMoneyBill1}>
223226
Plans & billing model.
224227
</Docset>

src/content/docs/support.mdx

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
title: Support
3+
description: Learn how to reach the Mergify support team, understand coverage, and explore enhanced support options.
4+
---
5+
6+
At Mergify, we treat support as a core part of the product experience. Our goal
7+
is to keep your merge automation running smoothly by making it simple to contact
8+
the right team, set expectations, and understand the additional services
9+
available to larger organizations.
10+
11+
## Contact Support Immediately
12+
13+
If you are stuck, use one of the following channels:
14+
15+
1. **Email:** <a href="mailto:[email protected]">[email protected]</a>.
16+
Include the affected repository, pull request number, and a short description
17+
(screenshots/log excerpts encouraged) so we can reproduce quickly.
18+
19+
2. **In-app ticket:** From the Mergify dashboard, go to **Help → Contact
20+
support** to submit a request. We automatically attach account context, which
21+
speeds up triage.
22+
23+
3. **Status follow-up:** Track platform availability at <a
24+
href="https://status.mergify.com">status.mergify.com</a> and reference
25+
incident IDs in your ticket for targeted updates.
26+
27+
These options are available to every Mergify user.
28+
29+
## Support Overview
30+
31+
We provide assistance to authorized users directly through the service as well as by email. While
32+
resolution times can vary depending on complexity, our team commits to best-effort responses within
33+
one (1) business day for every incoming request. You will always receive a human acknowledgement
34+
confirming the scope and next steps.
35+
36+
Enterprise plans unlock additional collaboration channels beyond the default email queue:
37+
38+
- **Dedicated Slack channel:** Eligible enterprise customers receive a shared
39+
Slack channel with the Mergify team for higher-touch incident response,
40+
proactive reviews, and faster iteration.
41+
42+
- **Named support contacts:** We partner with your engineering leads to keep
43+
context warm and reduce time to resolution on recurring workflows.
44+
45+
Reach out to your account manager if you would like to enable or adjust these enterprise options.
46+
47+
## Premium Support
48+
49+
Organizations that need round-the-clock coverage can subscribe to our optional 24/7 Premium Support
50+
package. This add-on provides prioritized routing, after-hours incident handling, and direct access
51+
to on-call engineers. Contact <a href="mailto:[email protected]">[email protected]</a> to scope the
52+
package and ensure it matches your operational requirements.
53+
54+
## What to Expect
55+
56+
When you open a support request, we:
57+
58+
1. Acknowledge the ticket and confirm the scope within one business day.
59+
2. Investigate using the artifacts you provided and any telemetry available on our side.
60+
3. Publish corrective updates when needed and confirm the outcome with you.
61+
62+
If a request requires product changes or in-depth consulting, we will clearly
63+
outline the effort and any additional agreement needed before proceeding.

src/content/navItems.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
BsRocket,
1414
BsStack,
1515
} from 'react-icons/bs';
16-
import { FaHome, FaRadiation, FaRegListAlt, FaShieldAlt } from 'react-icons/fa';
16+
import { FaHome, FaLifeRing, FaRadiation, FaRegListAlt, FaShieldAlt } from 'react-icons/fa';
1717
import {
1818
FaBug,
1919
FaCircleXmark,
@@ -337,6 +337,7 @@ const navItems: NavItem[] = [
337337
},
338338
{ title: 'Stacks', path: '/stacks', icon: BsStack },
339339
{ title: 'Security', path: '/security', icon: FaShieldAlt },
340+
{ title: 'Support', path: '/support', icon: FaLifeRing },
340341
{ title: 'Badge', path: '/badge', icon: BiBadgeCheck },
341342
{ title: 'Billing', path: '/billing', icon: FaMoneyBill1 },
342343
{ title: 'Changelog', path: '/changelog', icon: FaRegListAlt },

0 commit comments

Comments
 (0)