| // 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. | |
| const allowedTopics = [ | |
| '2FA', | |
| 'Access management', | |
| 'Accounts', | |
| 'Action development', | |
| 'Actions', | |
| 'Actions Runner Controller', | |
| 'Administrator', | |
| 'Advanced Security', | |
| 'AI', | |
| 'Alerts', | |
| 'Amazon ECS', | |
| 'Analytics', | |
| 'Android', | |
| 'Ant', | |
| 'API', | |
| 'Auditing', | |
| 'Authentication', | |
| 'Azure App Service', | |
| 'Azure Kubernetes Service', | |
| 'Azure Pipelines', | |
| 'Azure Static Web Apps', | |
| 'Azure subscription', | |
| 'Azure Virtual Network', | |
| 'Backups', | |
| 'Billing', | |
| 'C/C++', | |
| 'C#', | |
| 'Cancellation', | |
| 'CD', | |
| 'CI', | |
| 'CircleCI', | |
| 'CLI', | |
| 'Clustering', | |
| 'Code Quality', | |
| 'Code scanning', | |
| 'Code Security', | |
| 'CodeQL', | |
| 'Codespaces', | |
| 'Collaboration', | |
| 'Community', | |
| 'Copilot', | |
| 'Contacting sponsors', | |
| 'Containers', | |
| 'CVEs', | |
| 'Dependabot', | |
| 'Dependencies', | |
| 'Dependency graph', | |
| 'Dependency review', | |
| 'Deployment', | |
| 'Desktop', | |
| 'Developer', | |
| 'Device verification', | |
| 'Discounts', | |
| 'Discussions', | |
| 'Docker', | |
| 'Downgrades', | |
| 'Early access', | |
| 'Education', | |
| 'Enterprise', | |
| 'Errors', | |
| 'Events', | |
| 'Forks', | |
| 'Fundamentals', | |
| 'Git', | |
| 'GitHub Apps', | |
| 'GitHub Connect', | |
| 'GitHub Models', | |
| 'GitHub search', | |
| 'GitHub', | |
| 'GitLab', | |
| 'Google Kubernetes Engine', | |
| 'Gradle', | |
| 'GraphQL', | |
| 'Health', | |
| 'High availability', | |
| 'Identity', | |
| 'Infrastructure', | |
| 'Integration', | |
| 'iOS', | |
| 'Issues', | |
| 'Java', | |
| 'JavaScript', | |
| 'Jenkins', | |
| 'Kotlin', | |
| 'Legal', | |
| 'LFS', | |
| 'Licensing', | |
| 'Logging', | |
| 'Maintenance', | |
| 'Marketplace', | |
| 'Maven', | |
| 'Migration', | |
| 'Mobile', | |
| 'Monitoring', | |
| 'Networking', | |
| 'Node', | |
| 'Nonprofits', | |
| 'Notifications', | |
| 'OAuth apps', | |
| 'Open Source', | |
| 'Organizations', | |
| 'Packages', | |
| 'Packaging', | |
| 'Pages', | |
| 'Performance', | |
| 'Permissions', | |
| 'Personal account', | |
| 'Policies', | |
| 'Policy', | |
| 'PowerShell', | |
| 'Pre-receive hooks', | |
| 'Privacy', | |
| 'Profile', | |
| 'Profiles', | |
| 'Project management', | |
| 'Projects', | |
| 'Publishing', | |
| 'Pull requests', | |
| 'Python', | |
| 'Receipts', | |
| 'Repositories', | |
| 'REST', | |
| 'Ruby', | |
| 'SARIF', | |
| 'Secret Protection', | |
| 'Secret scanning', | |
| 'Secret store', | |
| 'Security advisories', | |
| 'Security overview', | |
| 'Security policies', | |
| 'Security updates', | |
| 'Security', | |
| 'Set up', | |
| 'Spending limits', | |
| 'Sponsors payments', | |
| 'Sponsors profile', | |
| 'Sponsors', | |
| 'SSH', | |
| 'SSO', | |
| 'Storage', | |
| 'Support', | |
| 'Swift', | |
| 'Team', | |
| 'Teams', | |
| 'Transcripts', | |
| 'Travis CI', | |
| 'Trials', | |
| 'Troubleshooting', | |
| 'Upgrades', | |
| 'User account', | |
| 'Usernames', | |
| 'Version updates', | |
| 'Visual Studio Code', | |
| 'Vulnerabilities', | |
| 'Webhooks', | |
| 'Workflows', | |
| 'Xamarin.Android', | |
| 'Xamarin.iOS', | |
| 'Xamarin', | |
| 'Xcode', | |
| ] as const | |
| export default allowedTopics | |