forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
allowed-topics.js
142 lines (140 loc) · 2.56 KB
/
allowed-topics.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// This is an AllowList of topics that are approved for use in `topics`
// frontmatter property. If a new topic is added to a Markdown file it must
// also be added to this file.
// The purpose of this list is to ensure we prevent typos and put a process in
// place to keep a curated list of topics. This list also serves as a list of
// available topics filters when using the search endpoint
// (see /contributing/search#how-to-search)
// If you'd like to add a new topic, consult the topic guidelines in the
// content model, add the entry to this list, and ensure you loop in the
// content and/or content strategy team for review.
module.exports = [
'2fa',
'Action development',
'Actions',
'Administrator',
'Advanced Security',
'Amazon ECS',
'Android',
'Ant',
'Analytics',
'API',
'Auditing',
'Authentication',
'Azure App Service',
'Azure Pipelines',
'Backups',
'Cancellation',
'CD',
'CI',
'CircleCI',
'Clustering',
'Contacting sponsors',
'Containers',
'Code scanning',
'Codespaces',
'Developer',
'Discussions',
'Docker',
'Downgrades',
'Education',
'Events',
'Errors',
'Fundamentals',
'Git',
'GitHub Connect',
'GitLab',
'Google Kubernetes Engine',
'Gradle',
'GraphQL',
'High availability',
'Infrastructure',
'iOS',
'Java',
'JavaScript',
'Jenkins',
'Licensing',
'Logging',
'Marketplace',
'Maven',
'Migration',
'Monitoring',
'Networking',
'Node',
'Nonprofits',
'Open Source',
'Organizations',
'Packages',
'Packaging',
'Performance',
'Powershell',
'Pre-receive hooks',
'Privacy',
'Project management',
'Publishing',
'Python',
'Ruby',
'Secret scanning',
'Security',
'Sponsors',
'Sponsors payments',
'Sponsors profile',
'Storage',
'Support',
'Swift',
'Travis CI',
'Upgrades',
'User account',
'Webhooks',
'Workflows',
'Access management',
'Accounts',
'Billing',
'CLI',
'Codespaces',
'Community',
'Desktop',
'Device verification',
'Discounts',
'Early access',
'Enterprise',
'GitHub',
'GitHub Apps',
'GitHub search',
'Identity',
'Issues',
'Jobs',
'Legal',
'LFS',
'Maintenance',
'Marketplace',
'Mobile',
'Notifications',
'OAuth Apps',
'Pages',
'Permissions',
'Policies',
'Policy',
'Profile',
'Profiles',
'Projects',
'Pull requests',
'Receipts',
'Repositories',
'Security',
'Spending limits',
'Support',
'Set up',
'SSH',
'SSO',
'Teams',
'Trials',
'Troubleshooting',
'Upgrades',
'Usernames',
'Visual Studio Code',
'Xamarin',
'Xamarin.iOS',
'Xamarin.Android',
'Xcode'
]