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
|
- // 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',
- 'Amazon ECS',
- 'Ant',
- 'Azure App Service',
- 'Azure Pipelines',
- 'CD',
- 'CI',
- 'CircleCI',
- 'Containers',
- 'Docker',
- 'Fundamentals',
- 'GitLab',
- 'Google Kubernetes Engine',
- 'Gradle',
- 'Java',
- 'JavaScript',
- 'Jenkins',
- 'Maven',
- 'Migration',
- 'Node',
- 'Packaging',
- 'Powershell',
- 'Project management',
- 'Publishing',
- 'Python',
- 'Ruby',
- 'Security',
- 'Travis CI',
- 'Workflows',
- 'access management',
- 'accounts',
- 'api',
- 'billing',
- 'cli',
- 'codespaces',
- 'community',
- 'desktop',
- 'device verification',
- 'early access',
- 'enterprise',
- 'events',
- 'github',
- 'github apps',
- 'github search',
- 'identity',
- 'issues',
- 'jobs',
- 'legal',
- 'marketplace',
- 'mobile',
- 'notifications',
- 'oauth apps',
- 'open source',
- 'organizations',
- 'pages',
- 'permissions',
- 'policy',
- 'profile',
- 'profiles',
- 'projects',
- 'pull requests',
- 'repositories',
- 'security',
- 'sponsors',
- 'ssh',
- 'sso',
- 'teams',
- 'usernames',
- 'webhooks',
- 'Xcode'
- ]
|