forked from IMPranshu/docs-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
120 lines (118 loc) · 5.01 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
DocsSidebar: [
"introduction",
{
type: "category",
label: "Getting Started",
collapsed: false,
items: [
"getting-started/installation",
"getting-started/configuration",
"getting-started/playground",
"getting-started/security",
],
},
{
type: "category",
label: "Guides",
collapsed: false,
items: [
"guides/syntax",
"guides/semantics",
"guides/built-ins/built-ins",
{
type: "category",
label: "Aladino",
link: { type: "doc", id: "guides/aladino/specification" },
items: [
"guides/aladino/syntax",
"guides/aladino/semantics",
],
},
"guides/annotations",
"guides/commands/commands",
"guides/extends/extends",
"guides/reports/reports"
],
},
{
type: "category",
label: "Use Cases",
link: {
type: "doc",
id: "use-cases/use-cases",
},
items: [
"use-cases/auto-merge/auto-merge",
{
type: "category",
label: "Automated Labelling",
link: {
type: "doc",
id: "use-cases/automated-labelling/automated-labelling",
},
items: [
'use-cases/automated-labelling/label-based-on-author-groups/label-based-on-author-groups',
'use-cases/automated-labelling/label-based-on-file-paths/label-based-on-file-paths',
'use-cases/automated-labelling/label-critical-changes-with-code-pattern/label-critical-changes-with-code-pattern',
'use-cases/automated-labelling/label-critical-changes-with-semantic-code-annotations/label-critical-changes-with-semantic-code-annotations',
'use-cases/automated-labelling/label-potential-missing-changes/label-potential-missing-changes',
'use-cases/automated-labelling/label-when-git-conflicts/label-when-git-conflicts',
'use-cases/automated-labelling/label-with-size/label-with-size',
'use-cases/automated-labelling/remove-label-based-on-file-paths/remove-label-based-on-file-paths'
],
},
"use-cases/attention-set/attention-set",
"use-cases/blocking-merge/blocking-merge",
"use-cases/check-issue-description/check-issue-description",
"use-cases/comment-on-pull-requests/comment-on-pull-requests",
"use-cases/enforce-branch-conventions/enforce-branch-conventions",
"use-cases/enforce-conventional-commits/enforce-conventional-commits",
"use-cases/manage-issues-projects/manage-issues-github-projects",
{
type: "category",
label: "Reviewer Assignment",
link: {
type: "doc",
id: "use-cases/reviewer-assignment/reviewer-assignment",
},
items: [
'use-cases/reviewer-assignment/assign-review-to-3-developers/assign-review-to-3-developers',
'use-cases/reviewer-assignment/assign-review-to-a-team/assign-review-to-a-team',
'use-cases/reviewer-assignment/assign-senior-reviewers-to-new-joiners/assign-senior-reviewers-to-new-joiners',
'use-cases/reviewer-assignment/assign-sequential-reviewers/assign-sequential-reviewers',
],
},
"use-cases/ship-show-ask/ship-show-ask",
{
type: "category",
label: "Timestamps",
link: {
type: "doc",
id: "use-cases/timestamps/timestamps",
},
items: [
"use-cases/timestamps/label-on-change-freeze/label-on-change-freeze",
"use-cases/timestamps/notify-when-long-live-pull-request/notify-when-long-live-pull-request",
],
},
],
},
{
type: "doc",
id: "troubleshooting",
label: "Troubleshooting",
},
{
type: "doc",
id: "contribute",
label: "Contribute",
},
{
Tooling: ["tooling/vscode-reviewpad-yaml-schema"],
}
],
};
module.exports = sidebars;