Co-authored-by: Lucas Costi <lucascosti@users.noreply.github.com> Co-authored-by: Martin Lopes <martin389@github.com>
86 lines
1.7 KiB
JavaScript
86 lines
1.7 KiB
JavaScript
// 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'
|
|
]
|