From d6eb9109470594f3d4e12bd8c0c3162eea3c6a70 Mon Sep 17 00:00:00 2001 From: Ari LiVigni Date: Mon, 2 Mar 2026 09:34:49 -0500 Subject: [PATCH 1/5] Enhance hands-on practice section with learning goals (#59872) Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- content/copilot/how-tos/copilot-cli/cli-best-practices.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/content/copilot/how-tos/copilot-cli/cli-best-practices.md b/content/copilot/how-tos/copilot-cli/cli-best-practices.md index 799341740bed..6d65f8304164 100644 --- a/content/copilot/how-tos/copilot-cli/cli-best-practices.md +++ b/content/copilot/how-tos/copilot-cli/cli-best-practices.md @@ -484,6 +484,14 @@ To submit private feedback to {% data variables.product.github %} about {% data ## Hands-on practice Try the [Creating applications with {% data variables.copilot.copilot_cli_short %}](https://github.com/skills/create-applications-with-the-copilot-cli) Skills exercise for practical experience building an application with {% data variables.copilot.copilot_cli_short %}. +Here is what you will learn: +* Install {% data variables.copilot.copilot_cli_short %} +* Use the issue template to create an issue +* Generate a Node.js CLI calculator app +* Expand calculator functionality +* Write unit tests for calculator functions +* Create, review, and merge your pull request + ## Further reading * [AUTOTITLE](/copilot/concepts/agents/about-copilot-cli) From 539b852c6e7f11085e435bd88400e651c4073b98 Mon Sep 17 00:00:00 2001 From: Sophie <29382425+sophietheking@users.noreply.github.com> Date: Mon, 2 Mar 2026 16:54:58 +0100 Subject: [PATCH 2/5] [EDI] Tracking security campaigns (#59791) Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../tracking-security-campaigns.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/tracking-security-campaigns.md b/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/tracking-security-campaigns.md index 914762fd3174..48f402a0ee50 100644 --- a/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/tracking-security-campaigns.md +++ b/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/tracking-security-campaigns.md @@ -1,7 +1,7 @@ --- title: Tracking security campaigns shortTitle: Track security campaign -intro: You can monitor the progress of all your organization's security campaigns, and track the status of individual campaigns. +intro: Use the campaign tracking views to monitor remediation progress, identify stalled work, and measure campaign impact across your organization. allowTitleToDifferFromFilename: true permissions: '{% data reusables.permissions.security-org-enable %}' product: '{% data reusables.gated-features.security-campaigns %}' @@ -23,9 +23,9 @@ redirect_from: ## Tracking campaigns across your organization -The tracking view provides an overview of data for all open and closed campaigns. It helps you understand the impact of the campaigns, track progress through campaigns and measure success towards achieving your organization's goals. +The tracking view helps you quickly assess the health of your organization’s campaigns. You can use it to identify campaigns with a high number of open alerts, check whether work has started, and determine whether campaigns are on track to meet their due dates. -To display the campaign tracking view, navigate to the **Security** tab for the organization, then in the left sidebar click **{% octicon "goal" aria-hidden="true" aria-label="goal" %} Campaigns**. {% ifversion security-campaigns-secrets %}To display campaigns for secrets, click the **Secrets** at at the top of the page. +To display the campaign tracking view, navigate to the **Security** tab for the organization, then in the left sidebar click **{% octicon "goal" aria-hidden="true" aria-label="goal" %} Campaigns**. {% ifversion security-campaigns-secrets %}To display campaigns for secrets, click the **Secrets** tab at the top of the page. ![Screenshot of the security campaigns overview page. The "Secrets" campaign tab is outlined in orange.](/assets/images/help/security/security-campaigns-tracking-overview-2tabs.png) @@ -42,6 +42,8 @@ The tracking view shows you a summary of "Open" and "Closed" campaigns, with the * **Fixed**: the alert has been resolved, either within or outside of the campaign workflow. * **Dismissed**: the alert was reviewed but intentionally not fixed; it has been dismissed. +Review the proportion of alerts in each status to understand where action is needed. A high number of **Open** alerts may indicate that remediation has not yet started, while a low number of **In progress** alerts could signal that teams need additional guidance or prioritization. + ## Tracking a single campaign You can similarly track how a single campaign is progressing by viewing the campaign's own tracking page. @@ -50,13 +52,17 @@ To display the tracking page for a campaign, navigate to the "Campaigns" page, { ![Screenshot of campaign tracking view for "Testing Campaigns for CodeQL". The campaign progress is outlined in dark orange.](/assets/images/help/security/driver-sec-campaign-view.png) -The tracking view shows you a summary of: +The tracking view for a single campaign helps you evaluate whether remediation is progressing as expected and whether additional follow-up is required. + +The following indicators help you evaluate whether remediation is progressing as expected and whether additional follow-up is required. * **Campaign progress**: how many alerts are closed (fixed or dismissed), in progress, or still left to review. * **Status**: how the campaign is progressing towards its due date. * **{% data variables.copilot.copilot_autofix_short %}** (code campaigns only): number of alerts where {% data variables.copilot.copilot_autofix_short %} can generate a fix to resolve the alert. -You can also explore the campaign repositories and alerts to see where teams are engaging in the campaign, and where teams might need some extra encouragement to take part. +For example, if many alerts remain open as the due date approaches, you may need to follow up with repository owners or adjust the campaign timeline. + +You can also explore campaign repositories and alerts to identify which teams are actively addressing alerts and which may need follow-up. * **Repository details:** you can expand any repository to show the progress in alert remediation. * **Alert details:** you can set the "Group by" option to **None** to show a list of all alerts. From d7ea211e5f6ab7ef09c169a424e03f20113e1eaf Mon Sep 17 00:00:00 2001 From: Sophie <29382425+sophietheking@users.noreply.github.com> Date: Mon, 2 Mar 2026 16:55:54 +0100 Subject: [PATCH 3/5] [EDI] About exposure to vulnerabilities in your code and in dependencies (#59795) Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: Isaac Brown <101839405+isaacmbrown@users.noreply.github.com> --- ...lities-in-your-code-and-in-dependencies.md | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/content/code-security/concepts/vulnerability-reporting-and-management/about-your-exposure-to-vulnerabilities-in-your-code-and-in-dependencies.md b/content/code-security/concepts/vulnerability-reporting-and-management/about-your-exposure-to-vulnerabilities-in-your-code-and-in-dependencies.md index 0589e3eb39c7..5a3c84153f08 100644 --- a/content/code-security/concepts/vulnerability-reporting-and-management/about-your-exposure-to-vulnerabilities-in-your-code-and-in-dependencies.md +++ b/content/code-security/concepts/vulnerability-reporting-and-management/about-your-exposure-to-vulnerabilities-in-your-code-and-in-dependencies.md @@ -1,7 +1,7 @@ --- title: About exposure to vulnerabilities in your code and in dependencies shortTitle: Vulnerability exposure -intro: Understanding your organization’s exposure to vulnerabilities in first-party code and in all dependencies is essential for enabling you to efficiently assess, prioritize, and remediate vulnerabilities, reducing the likelihood of security breaches. +intro: Understand how vulnerabilities in your own code and in third-party dependencies contribute to your organization’s overall security exposure, and how to measure and reduce that risk. allowTitleToDifferFromFilename: true product: '{% data reusables.gated-features.ghas-billing %}' versions: @@ -17,9 +17,9 @@ redirect_from: - /code-security/securing-your-organization/understanding-your-organizations-exposure-to-vulnerabilities/about-your-exposure-to-vulnerable-dependencies --- -## About exposure to vulnerable code +## Risks of unaddressed vulnerabilities -Your organization has exposure to vulnerabilities in both the code you write and maintain, and in the open-source or third-party dependencies your code uses. Assessing your exposure to vulnerable dependencies is crucial if you want to prevent: +Your organization has exposure to vulnerabilities in both the code you write and maintain, and in the open source or third-party dependencies your code uses. Assessing your exposure to vulnerabilities is crucial if you want to prevent: * **Unplanned downtime and operational disruption**. Exploitation of vulnerabilities can result in application outages, degraded service quality, or cascading failures in critical systems, disrupting your business operations. @@ -31,7 +31,7 @@ Your organization has exposure to vulnerabilities in both the code you write and * **Regulatory and licensing issues**. Many regulations and industry standards require organizations to proactively address known vulnerabilities in their software supply chain. Failing to remediate vulnerable dependencies can result in non-compliance, audits, legal penalties, or breaches of open source license obligations. -Regularly assessing your exposure to vulnerabilities is good practice to help identify risks early, implement effective remediation strategies, and maintain resilient, trustworthy software. +Regularly assessing vulnerability exposure helps you identify risks early and prioritize remediation. ## Ways to monitor your repositories for vulnerable code @@ -41,9 +41,11 @@ Regularly assessing your exposure to vulnerabilities is good practice to help id {% data variables.product.github %} provides a comprehensive set of {% data variables.product.prodname_dependabot %} metrics to help you monitor, prioritize, and remediate these risks across all repositories in your organization. See [AUTOTITLE](/code-security/concepts/supply-chain-security/about-metrics-for-dependabot-alerts). -## Key tasks for AppSec managers +## Reducing organizational vulnerability exposure -### 1. Monitor vulnerability metrics for dependencies +Reducing organizational vulnerability exposure requires ongoing visibility into risk, remediation progress, and policy enforcement across repositories. {% data variables.product.prodname_dependabot %} and {% data variables.product.prodname_code_scanning %} metrics provide this visibility. Use the following best practices to monitor and reduce your organization's vulnerability exposure: + +### Monitor vulnerability metrics for dependencies Use the metrics overview for {% data variables.product.prodname_dependabot %} to gain visibility into the current state of your organization's dependency vulnerabilities. See [AUTOTITLE](/code-security/security-overview/viewing-metrics-for-dependabot-alerts). @@ -51,7 +53,7 @@ Use the metrics overview for {% data variables.product.prodname_dependabot %} to * **Repository-level breakdown:** Identify which repositories have the highest number of critical or exploitable vulnerabilities. * **Remediation tracking:** Track the number and percentage of alerts fixed over time to measure the effectiveness of your vulnerability management program. -### 2. Monitor introduction of new {% data variables.product.prodname_code_scanning %} alerts +### Monitor introduction of new {% data variables.product.prodname_code_scanning %} alerts Use the alert view for {% data variables.product.prodname_code_scanning %} to gain visibility into remediation activity in your organization's pull requests. See [AUTOTITLE](/code-security/security-overview/viewing-metrics-for-pull-request-alerts). @@ -60,7 +62,7 @@ Use the alert view for {% data variables.product.prodname_code_scanning %} to ga * **Repository-level breakdown:** Identify which repositories have the highest number of alerts detected in pull requests but still merged into the default branch. * **Remediation tracking:** Track the number and percentage of alerts fixed over time to measure the effectiveness of your vulnerability management program. -### 3. Prioritize remediation efforts +### Prioritize remediation efforts Focus on vulnerabilities that present the highest risk to your organization. @@ -69,20 +71,20 @@ Focus on vulnerabilities that present the highest risk to your organization. * Encourage development teams to address vulnerabilities that are actually used in deployed artifacts through repository custom properties and using production context. See [AUTOTITLE](/code-security/securing-your-organization/understanding-your-organizations-exposure-to-vulnerabilities/alerts-in-production-code).{% endif %}{% ifversion security-campaigns %} * Create security campaigns to encourage and track the remediation of high priority {% data variables.product.prodname_code_scanning %} alerts. See [AUTOTITLE](/code-security/securing-your-organization/fixing-security-alerts-at-scale/creating-managing-security-campaigns).{% endif %} -### 4. Communicate risk and progress +### Communicate risk and progress * Use the metrics pages to communicate key risk factors and remediation progress to stakeholders. * Provide regular updates on trends, such as the reduction in open critical vulnerabilities or improvements in remediation rates. * Highlight repositories or teams that require additional support or attention. -### 5. Establish and enforce policies +### Establish and enforce policies * Set an organization-wide security configuration that enables {% data variables.product.prodname_dependabot %} and {% data variables.product.prodname_code_scanning %} on all existing and new repositories. See [AUTOTITLE](/code-security/securing-your-organization/introduction-to-securing-your-organization-at-scale/about-enabling-security-features-at-scale). * Enable dependency review to comment on pull requests in all repositories. * Create an organization-wide ruleset to protect the default branch and require critical {% data variables.product.prodname_code_scanning %} alerts to be fixed before a pull request can be merged. See [AUTOTITLE](/organizations/managing-organization-settings/managing-rulesets-for-repositories-in-your-organization). * Work with repository administrators to enable automated security updates where possible. See [AUTOTITLE](/code-security/dependabot/dependabot-security-updates/about-dependabot-security-updates). -### 6. Assess the impact of alerts +### Assess the impact of alerts * Regularly review how {% data variables.product.prodname_dependabot %} and {% data variables.product.prodname_code_scanning %} alerts are helping to block security vulnerabilities from entering your codebase. * Use historical data to demonstrate the value of proactive dependency management. From ab424ac8e97fea9c8cfa3beea4dad28cf90c597a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 15:59:55 +0000 Subject: [PATCH 4/5] docs: update copilot-cli content from source docs (#59924) Co-authored-by: github-actions[bot] Co-authored-by: hubwriter Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- content/copilot/reference/cli-command-reference.md | 1 + src/content-pipelines/state/copilot-cli.sha | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/content/copilot/reference/cli-command-reference.md b/content/copilot/reference/cli-command-reference.md index 6633f303ac97..f3b16a9037e4 100644 --- a/content/copilot/reference/cli-command-reference.md +++ b/content/copilot/reference/cli-command-reference.md @@ -52,6 +52,7 @@ contentType: reference | Ctrl+B | Move to the previous character. | | Ctrl+E | Move to end of the line (when typing). | | Ctrl+F | Move to the next character. | +| Ctrl+G | Edit the prompt in an external editor. | | Ctrl+H | Delete the previous character. | | Ctrl+K | Delete from cursor to end of the line. | | Ctrl+U | Delete from cursor to beginning of the line. | diff --git a/src/content-pipelines/state/copilot-cli.sha b/src/content-pipelines/state/copilot-cli.sha index d3cba55ab4ae..25684c7a2d2f 100644 --- a/src/content-pipelines/state/copilot-cli.sha +++ b/src/content-pipelines/state/copilot-cli.sha @@ -1 +1 @@ -89c0c2a5da239cdb5a8df41b1934aa9c49bc9520 +048ce959ac72b3507545101544155fecbc89f353 From 67ac1e22b2b081fe04fdfc59b46d756d4b624ccb Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Mar 2026 17:03:12 +0000 Subject: [PATCH 5/5] Remove topics frontmatter from site-policy content (#59899) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: subatoi <32935794+subatoi@users.noreply.github.com> --- .../acceptable-use-policies/github-acceptable-use-policies.md | 3 --- .../github-active-malware-or-exploits.md | 3 --- .../github-appeal-and-reinstatement.md | 3 --- .../acceptable-use-policies/github-bullying-and-harassment.md | 3 --- .../github-child-sexual-exploitation-or-abuse.md | 3 --- .../github-disrupting-the-experience-of-other-users.md | 3 --- .../github-doxxing-and-invasion-of-privacy.md | 3 --- .../github-hate-speech-and-discrimination.md | 3 --- .../acceptable-use-policies/github-impersonation.md | 3 --- .../github-misinformation-and-disinformation.md | 3 --- .../github-non-consensual-intimate-imagery.md | 3 --- .../github-sexually-obscene-content.md | 3 --- .../github-synthetic-media-and-ai-tools.md | 3 --- .../github-terrorism-and-violent-extremism.md | 3 --- ...ub-threats-of-violence-and-gratuitously-violent-content.md | 3 --- content/site-policy/acceptable-use-policies/index.md | 3 --- .../content-removal-policies/dmca-takedown-policy.md | 3 --- .../github-private-information-removal-policy.md | 3 --- .../content-removal-policies/github-trademark-policy.md | 3 --- .../guide-to-submitting-a-dmca-counter-notice.md | 3 --- .../guide-to-submitting-a-dmca-takedown-notice.md | 3 --- content/site-policy/content-removal-policies/index.md | 3 --- .../submitting-content-removal-requests.md | 3 --- .../github-company-policies/github-anti-bribery-statement.md | 3 --- .../github-gifts-and-entertainment-policy.md | 3 --- .../github-gpl-cooperation-commitment.md | 3 --- ...github-statement-against-modern-slavery-and-child-labor.md | 3 --- content/site-policy/github-company-policies/index.md | 3 --- .../github-terms/github-community-code-of-conduct.md | 3 --- .../site-policy/github-terms/github-community-guidelines.md | 3 --- .../github-terms/github-copilot-extension-developer-policy.md | 3 --- .../github-terms/github-corporate-terms-of-service.md | 3 --- content/site-policy/github-terms/github-dpa-previews.md | 3 --- .../github-terms/github-educational-use-agreement.md | 4 ---- .../site-policy/github-terms/github-event-code-of-conduct.md | 3 --- content/site-policy/github-terms/github-event-terms.md | 3 --- .../github-terms/github-marketplace-developer-agreement.md | 3 --- .../github-terms/github-marketplace-terms-of-service.md | 3 --- .../github-open-source-applications-terms-and-conditions.md | 3 --- .../github-terms/github-pre-release-license-terms.md | 3 --- .../github-terms/github-registered-developer-agreement.md | 3 --- .../site-policy/github-terms/github-research-program-terms.md | 3 --- .../github-terms/github-sponsors-additional-terms.md | 3 --- .../github-terms-for-additional-products-and-features.md | 3 --- content/site-policy/github-terms/github-terms-of-service.md | 3 --- content/site-policy/github-terms/index.md | 3 --- content/site-policy/index.md | 3 --- .../other-site-policies/github-account-recovery-policy.md | 4 ---- .../other-site-policies/github-and-trade-controls.md | 3 --- .../other-site-policies/github-deceased-user-policy.md | 3 --- .../other-site-policies/github-government-takedown-policy.md | 3 --- content/site-policy/other-site-policies/github-logo-policy.md | 3 --- .../site-policy/other-site-policies/github-username-policy.md | 3 --- .../guidelines-for-legal-requests-of-user-data.md | 3 --- content/site-policy/other-site-policies/index.md | 3 --- .../privacy-policies/github-candidate-privacy-policy.md | 3 --- content/site-policy/privacy-policies/github-cookies.md | 3 --- .../privacy-policies/github-general-privacy-statement.md | 3 --- content/site-policy/privacy-policies/github-subprocessors.md | 3 --- content/site-policy/privacy-policies/index.md | 3 --- .../coordinated-disclosure-of-security-vulnerabilities.md | 3 --- .../github-bug-bounty-program-legal-safe-harbor.md | 3 --- .../security-policies/github-sirt-description-rfc-2350.md | 3 --- content/site-policy/security-policies/index.md | 3 --- 64 files changed, 194 deletions(-) diff --git a/content/site-policy/acceptable-use-policies/github-acceptable-use-policies.md b/content/site-policy/acceptable-use-policies/github-acceptable-use-policies.md index bcd0a3a23f26..6b8bf16a29e9 100644 --- a/content/site-policy/acceptable-use-policies/github-acceptable-use-policies.md +++ b/content/site-policy/acceptable-use-policies/github-acceptable-use-policies.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-acceptable-use-policies versions: fpt: '*' -topics: - - Policy - - Legal --- **Short version:** _We host a wide variety of collaborative projects from all over the world, and that collaboration only works when our users are able to work together in good faith. While using the Service, you must comply with our Acceptable Use Policies, which include some restrictions on content and conduct on GitHub related to user safety, intellectual property, privacy, authenticity, and other limitations. In short, be excellent to each other._ diff --git a/content/site-policy/acceptable-use-policies/github-active-malware-or-exploits.md b/content/site-policy/acceptable-use-policies/github-active-malware-or-exploits.md index 55a77575f7de..3948b378b1cb 100644 --- a/content/site-policy/acceptable-use-policies/github-active-malware-or-exploits.md +++ b/content/site-policy/acceptable-use-policies/github-active-malware-or-exploits.md @@ -3,9 +3,6 @@ title: GitHub Active Malware or Exploits shortTitle: Active Malware or Exploits versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-active-malware-or-exploits - /github/site-policy/github-community-guidelines#active-malware-or-exploits diff --git a/content/site-policy/acceptable-use-policies/github-appeal-and-reinstatement.md b/content/site-policy/acceptable-use-policies/github-appeal-and-reinstatement.md index d2544ee37529..fe838e376eea 100644 --- a/content/site-policy/acceptable-use-policies/github-appeal-and-reinstatement.md +++ b/content/site-policy/acceptable-use-policies/github-appeal-and-reinstatement.md @@ -4,9 +4,6 @@ versions: fpt: '*' redirect_from: - /articles/github-appeal-and-reinstatement -topics: - - Policy - - Legal --- ## Appeal and Reinstatement diff --git a/content/site-policy/acceptable-use-policies/github-bullying-and-harassment.md b/content/site-policy/acceptable-use-policies/github-bullying-and-harassment.md index 39d603a092be..4175f5411289 100644 --- a/content/site-policy/acceptable-use-policies/github-bullying-and-harassment.md +++ b/content/site-policy/acceptable-use-policies/github-bullying-and-harassment.md @@ -3,9 +3,6 @@ title: GitHub Bullying and Harassment shortTitle: Bullying and Harassment versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-bullying-and-harassment - /github/site-policy/github-community-guidelines#bullying-and-harassment diff --git a/content/site-policy/acceptable-use-policies/github-child-sexual-exploitation-or-abuse.md b/content/site-policy/acceptable-use-policies/github-child-sexual-exploitation-or-abuse.md index bcbe55efd388..21a08add186d 100644 --- a/content/site-policy/acceptable-use-policies/github-child-sexual-exploitation-or-abuse.md +++ b/content/site-policy/acceptable-use-policies/github-child-sexual-exploitation-or-abuse.md @@ -3,9 +3,6 @@ title: GitHub Child Sexual Exploitation or Abuse shortTitle: CSAM Policy versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /csam - /github/site-policy/github-child-exploitation-or-abuse diff --git a/content/site-policy/acceptable-use-policies/github-disrupting-the-experience-of-other-users.md b/content/site-policy/acceptable-use-policies/github-disrupting-the-experience-of-other-users.md index 8bcf8a15a6cc..107b05c08fd0 100644 --- a/content/site-policy/acceptable-use-policies/github-disrupting-the-experience-of-other-users.md +++ b/content/site-policy/acceptable-use-policies/github-disrupting-the-experience-of-other-users.md @@ -3,9 +3,6 @@ title: GitHub Disrupting the Experience of Other Users shortTitle: Disrupting the Experience of Other Users versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-disrupting-the-experience-of-other-users - /github/site-policy/github-community-guidelines#disrupting-the-experience-of-other-users diff --git a/content/site-policy/acceptable-use-policies/github-doxxing-and-invasion-of-privacy.md b/content/site-policy/acceptable-use-policies/github-doxxing-and-invasion-of-privacy.md index 29a62d3773fa..c2e7ea4cb584 100644 --- a/content/site-policy/acceptable-use-policies/github-doxxing-and-invasion-of-privacy.md +++ b/content/site-policy/acceptable-use-policies/github-doxxing-and-invasion-of-privacy.md @@ -3,9 +3,6 @@ title: GitHub Doxxing and Invasion of Privacy shortTitle: Doxxing and Invasion of Privacy versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-doxxing-and-invasion-of-privacy - /github/site-policy/github-community-guidelines#doxxing-and-invasion-of-privacy diff --git a/content/site-policy/acceptable-use-policies/github-hate-speech-and-discrimination.md b/content/site-policy/acceptable-use-policies/github-hate-speech-and-discrimination.md index 2136dd64a9ee..6773be0d9286 100644 --- a/content/site-policy/acceptable-use-policies/github-hate-speech-and-discrimination.md +++ b/content/site-policy/acceptable-use-policies/github-hate-speech-and-discrimination.md @@ -3,9 +3,6 @@ title: GitHub Hate Speech and Discrimination shortTitle: Hate Speech and Discrimination versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-hate-speech-and-discrimination - /github/site-policy/github-community-guidelines#hate-speech-and-discrimination diff --git a/content/site-policy/acceptable-use-policies/github-impersonation.md b/content/site-policy/acceptable-use-policies/github-impersonation.md index 1e1dfc6a7140..ac586b509a12 100644 --- a/content/site-policy/acceptable-use-policies/github-impersonation.md +++ b/content/site-policy/acceptable-use-policies/github-impersonation.md @@ -3,9 +3,6 @@ title: GitHub Impersonation shortTitle: Impersonation versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-impersonation - /github/site-policy/github-community-guidelines#impersonation diff --git a/content/site-policy/acceptable-use-policies/github-misinformation-and-disinformation.md b/content/site-policy/acceptable-use-policies/github-misinformation-and-disinformation.md index 3b919ead9496..c93c2527a968 100644 --- a/content/site-policy/acceptable-use-policies/github-misinformation-and-disinformation.md +++ b/content/site-policy/acceptable-use-policies/github-misinformation-and-disinformation.md @@ -3,9 +3,6 @@ title: GitHub Misinformation and Disinformation shortTitle: Disinformation Policy versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-misinformation-and-disinformation - /github/site-policy/github-community-guidelines#misinformation-and-disinformation diff --git a/content/site-policy/acceptable-use-policies/github-non-consensual-intimate-imagery.md b/content/site-policy/acceptable-use-policies/github-non-consensual-intimate-imagery.md index 5f80813137ac..bd74959b10fb 100644 --- a/content/site-policy/acceptable-use-policies/github-non-consensual-intimate-imagery.md +++ b/content/site-policy/acceptable-use-policies/github-non-consensual-intimate-imagery.md @@ -3,9 +3,6 @@ title: GitHub Non-Consensual Intimate Imagery shortTitle: NCII versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /ncii - /github/site-policy/github-ncii diff --git a/content/site-policy/acceptable-use-policies/github-sexually-obscene-content.md b/content/site-policy/acceptable-use-policies/github-sexually-obscene-content.md index f18e352b3bfb..ff1cb9221e26 100644 --- a/content/site-policy/acceptable-use-policies/github-sexually-obscene-content.md +++ b/content/site-policy/acceptable-use-policies/github-sexually-obscene-content.md @@ -3,9 +3,6 @@ title: GitHub Sexually Obscene Content shortTitle: Sexually Obscene Content versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-sexually-obscene-content - /github/site-policy/github-community-guidelines#sexually-obscene-content diff --git a/content/site-policy/acceptable-use-policies/github-synthetic-media-and-ai-tools.md b/content/site-policy/acceptable-use-policies/github-synthetic-media-and-ai-tools.md index 4060d9fab494..db89d1c755b2 100644 --- a/content/site-policy/acceptable-use-policies/github-synthetic-media-and-ai-tools.md +++ b/content/site-policy/acceptable-use-policies/github-synthetic-media-and-ai-tools.md @@ -3,9 +3,6 @@ title: GitHub Synthetic Media and AI Tools shortTitle: Synthetic Media and AI Tools versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /ai-tools - /github/site-policy/github-synthetic-media-and-ai-tools diff --git a/content/site-policy/acceptable-use-policies/github-terrorism-and-violent-extremism.md b/content/site-policy/acceptable-use-policies/github-terrorism-and-violent-extremism.md index 46d34f2ca528..190f264ce7a4 100644 --- a/content/site-policy/acceptable-use-policies/github-terrorism-and-violent-extremism.md +++ b/content/site-policy/acceptable-use-policies/github-terrorism-and-violent-extremism.md @@ -3,9 +3,6 @@ title: GitHub Terrorism and Violent Extremism shortTitle: Terrorism and Violent Extremism Content versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /tvec - /github/site-policy/github-terrorism-and-violent-extremism diff --git a/content/site-policy/acceptable-use-policies/github-threats-of-violence-and-gratuitously-violent-content.md b/content/site-policy/acceptable-use-policies/github-threats-of-violence-and-gratuitously-violent-content.md index 65bf8b718031..62f80acfe0ea 100644 --- a/content/site-policy/acceptable-use-policies/github-threats-of-violence-and-gratuitously-violent-content.md +++ b/content/site-policy/acceptable-use-policies/github-threats-of-violence-and-gratuitously-violent-content.md @@ -3,9 +3,6 @@ title: GitHub Threats of Violence and Gratuitously Violent Content shortTitle: Threats of Violence and Gratuitously Violent Content versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-threats-of-violence-and-gratuitously-violent-content - /github/site-policy/github-community-guidelines#threats-of-violence diff --git a/content/site-policy/acceptable-use-policies/index.md b/content/site-policy/acceptable-use-policies/index.md index d6e62a8a2f90..24ce9017307b 100644 --- a/content/site-policy/acceptable-use-policies/index.md +++ b/content/site-policy/acceptable-use-policies/index.md @@ -2,9 +2,6 @@ title: Acceptable Use Policies versions: fpt: '*' -topics: - - Policy - - Legal children: - github-acceptable-use-policies - github-active-malware-or-exploits diff --git a/content/site-policy/content-removal-policies/dmca-takedown-policy.md b/content/site-policy/content-removal-policies/dmca-takedown-policy.md index 2f2e020e1de7..f07572ee26f2 100644 --- a/content/site-policy/content-removal-policies/dmca-takedown-policy.md +++ b/content/site-policy/content-removal-policies/dmca-takedown-policy.md @@ -9,9 +9,6 @@ redirect_from: - /github/site-policy/dmca-takedown-policy versions: fpt: '*' -topics: - - Policy - - Legal --- Welcome to GitHub's Guide to the Digital Millennium Copyright Act, commonly known as the "DMCA." This page is not meant as a comprehensive primer to the statute. However, if you've received a DMCA takedown notice targeting content you've posted on GitHub or if you're a rights-holder looking to issue such a notice, this page will hopefully help to demystify the law a bit as well as our policies for complying with it. diff --git a/content/site-policy/content-removal-policies/github-private-information-removal-policy.md b/content/site-policy/content-removal-policies/github-private-information-removal-policy.md index 5412a7c9f384..4602b92a7e8b 100644 --- a/content/site-policy/content-removal-policies/github-private-information-removal-policy.md +++ b/content/site-policy/content-removal-policies/github-private-information-removal-policy.md @@ -6,9 +6,6 @@ redirect_from: - /github/site-policy/github-private-information-removal-policy versions: fpt: '*' -topics: - - Policy - - Legal --- We offer this private information removal process as an exceptional service only for high-risk content that violates [GitHub's Terms of Service](/site-policy/acceptable-use-policies/github-acceptable-use-policies#3-conduct-restrictions), such as when your security is at risk from exposed access credentials. This guide describes the information GitHub needs from you in order to process a request to remove private information from a repository. diff --git a/content/site-policy/content-removal-policies/github-trademark-policy.md b/content/site-policy/content-removal-policies/github-trademark-policy.md index c4a2d6c9a3f5..8a15909a0a1b 100644 --- a/content/site-policy/content-removal-policies/github-trademark-policy.md +++ b/content/site-policy/content-removal-policies/github-trademark-policy.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-trademark-policy versions: fpt: '*' -topics: - - Policy - - Legal --- ## What is a GitHub Trademark Policy Violation? diff --git a/content/site-policy/content-removal-policies/guide-to-submitting-a-dmca-counter-notice.md b/content/site-policy/content-removal-policies/guide-to-submitting-a-dmca-counter-notice.md index 5300fdac4085..8ac3f377e822 100644 --- a/content/site-policy/content-removal-policies/guide-to-submitting-a-dmca-counter-notice.md +++ b/content/site-policy/content-removal-policies/guide-to-submitting-a-dmca-counter-notice.md @@ -7,9 +7,6 @@ redirect_from: - /github/site-policy/guide-to-submitting-a-dmca-counter-notice versions: fpt: '*' -topics: - - Policy - - Legal --- This guide describes the information that GitHub needs in order to process a counter notice to a DMCA takedown request. If you have more general questions about what the DMCA is or how GitHub processes DMCA takedown requests, please review our [DMCA Takedown Policy](/site-policy/content-removal-policies/dmca-takedown-policy). diff --git a/content/site-policy/content-removal-policies/guide-to-submitting-a-dmca-takedown-notice.md b/content/site-policy/content-removal-policies/guide-to-submitting-a-dmca-takedown-notice.md index 7a680023c374..0281511341e7 100644 --- a/content/site-policy/content-removal-policies/guide-to-submitting-a-dmca-takedown-notice.md +++ b/content/site-policy/content-removal-policies/guide-to-submitting-a-dmca-takedown-notice.md @@ -7,9 +7,6 @@ redirect_from: - /github/site-policy/guide-to-submitting-a-dmca-takedown-notice versions: fpt: '*' -topics: - - Policy - - Legal --- This guide describes the information that GitHub needs in order to process a DMCA takedown request. If you have more general questions about what the DMCA is or how GitHub processes DMCA takedown requests, please review our [DMCA Takedown Policy](/site-policy/content-removal-policies/dmca-takedown-policy). diff --git a/content/site-policy/content-removal-policies/index.md b/content/site-policy/content-removal-policies/index.md index 74cd4f694df9..8231aa789ef5 100644 --- a/content/site-policy/content-removal-policies/index.md +++ b/content/site-policy/content-removal-policies/index.md @@ -2,9 +2,6 @@ title: Content Removal Policies versions: fpt: '*' -topics: - - Policy - - Legal children: - /submitting-content-removal-requests - /dmca-takedown-policy diff --git a/content/site-policy/content-removal-policies/submitting-content-removal-requests.md b/content/site-policy/content-removal-policies/submitting-content-removal-requests.md index 53701f190fb9..0cec761ff311 100644 --- a/content/site-policy/content-removal-policies/submitting-content-removal-requests.md +++ b/content/site-policy/content-removal-policies/submitting-content-removal-requests.md @@ -6,9 +6,6 @@ redirect_from: - /github/site-policy/github-terms-and-other-site-policies/submitting-content-removal-requests versions: fpt: '*' -topics: - - Policy - - Legal --- We understand that copyrighted, trademarked, or private content may get published on GitHub – either accidentally or on purpose – sometimes in repositories that you do not own. Because the nature of this content varies, and because of different applicable laws, each category has its own, distinct reporting requirements outlined in our policies. diff --git a/content/site-policy/github-company-policies/github-anti-bribery-statement.md b/content/site-policy/github-company-policies/github-anti-bribery-statement.md index c3023956b5e0..852fcfedba4e 100644 --- a/content/site-policy/github-company-policies/github-anti-bribery-statement.md +++ b/content/site-policy/github-company-policies/github-anti-bribery-statement.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-anti-bribery-statement versions: fpt: '*' -topics: - - Policy - - Legal --- GitHub upholds our commitment to ethical business practices, including by prohibiting bribery and corruption. As [Transparency International](https://www.transparency.org/what-is-corruption) explains, the costs of corruption are * **political**, by posing a major obstacle to democracy and the rule of law diff --git a/content/site-policy/github-company-policies/github-gifts-and-entertainment-policy.md b/content/site-policy/github-company-policies/github-gifts-and-entertainment-policy.md index 86673ccf84ee..0e00d0851344 100644 --- a/content/site-policy/github-company-policies/github-gifts-and-entertainment-policy.md +++ b/content/site-policy/github-company-policies/github-gifts-and-entertainment-policy.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-gifts-and-entertainment-policy versions: fpt: '*' -topics: - - Policy - - Legal --- GitHub recognizes that our business is built on positive and transparent relationships. While informal interactions and exchanges of gifts may be part of developing those relationships and may even be considered customary in some countries, we need to ensure that we’re following anti-bribery laws. We have a legal obligation to behave ethically, including by not using such interactions to create a special advantage or influence a deal. diff --git a/content/site-policy/github-company-policies/github-gpl-cooperation-commitment.md b/content/site-policy/github-company-policies/github-gpl-cooperation-commitment.md index b85a089cbe97..ae5d8621ae7f 100644 --- a/content/site-policy/github-company-policies/github-gpl-cooperation-commitment.md +++ b/content/site-policy/github-company-policies/github-gpl-cooperation-commitment.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-gpl-cooperation-commitment versions: fpt: '*' -topics: - - Policy - - Legal --- This commitment pertains to GitHub contributions to Git, the Linux kernel, and other programs under covered licenses (scroll to the end for definitions). diff --git a/content/site-policy/github-company-policies/github-statement-against-modern-slavery-and-child-labor.md b/content/site-policy/github-company-policies/github-statement-against-modern-slavery-and-child-labor.md index ec0f62eed1ce..7d10679733e6 100644 --- a/content/site-policy/github-company-policies/github-statement-against-modern-slavery-and-child-labor.md +++ b/content/site-policy/github-company-policies/github-statement-against-modern-slavery-and-child-labor.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-statement-against-modern-slavery-and-child-labor versions: fpt: '*' -topics: - - Policy - - Legal --- _2018 statement_ diff --git a/content/site-policy/github-company-policies/index.md b/content/site-policy/github-company-policies/index.md index c1b0dd22eeb9..d6d21e2e4748 100644 --- a/content/site-policy/github-company-policies/index.md +++ b/content/site-policy/github-company-policies/index.md @@ -2,9 +2,6 @@ title: GitHub Company Policies versions: fpt: '*' -topics: - - Policy - - Legal children: - /github-statement-against-modern-slavery-and-child-labor - /github-anti-bribery-statement diff --git a/content/site-policy/github-terms/github-community-code-of-conduct.md b/content/site-policy/github-terms/github-community-code-of-conduct.md index b713c52d7237..fc46ef52bd80 100644 --- a/content/site-policy/github-terms/github-community-code-of-conduct.md +++ b/content/site-policy/github-terms/github-community-code-of-conduct.md @@ -7,9 +7,6 @@ redirect_from: - /site-policy/github-terms/github-community-forum-code-of-conduct versions: fpt: '*' -topics: - - Policy - - Legal --- ## Overview and Purpose diff --git a/content/site-policy/github-terms/github-community-guidelines.md b/content/site-policy/github-terms/github-community-guidelines.md index 78e400e80053..1d7787b03d99 100644 --- a/content/site-policy/github-terms/github-community-guidelines.md +++ b/content/site-policy/github-terms/github-community-guidelines.md @@ -7,9 +7,6 @@ redirect_from: - /github/site-policy/acceptable-use-policies/github-community-guidelines versions: fpt: '*' -topics: - - Policy - - Legal --- Millions of developers across the world host millions of projects—both open and closed source—on GitHub. We're fortunate to be able to play a part in enabling collaboration across the developer community every day, which is a responsibility we don’t take lightly. Together, we all have the exciting opportunity to make this a community we can be proud of. diff --git a/content/site-policy/github-terms/github-copilot-extension-developer-policy.md b/content/site-policy/github-terms/github-copilot-extension-developer-policy.md index b41493ab7928..39f0b328f013 100644 --- a/content/site-policy/github-terms/github-copilot-extension-developer-policy.md +++ b/content/site-policy/github-terms/github-copilot-extension-developer-policy.md @@ -2,9 +2,6 @@ title: GitHub Copilot Extension Developer Policy versions: fpt: '*' -topics: - - Policy - - Legal --- > Last Updated: October 20, 2025 diff --git a/content/site-policy/github-terms/github-corporate-terms-of-service.md b/content/site-policy/github-terms/github-corporate-terms-of-service.md index 107ee7c4e69e..451bb43aef06 100644 --- a/content/site-policy/github-terms/github-corporate-terms-of-service.md +++ b/content/site-policy/github-terms/github-corporate-terms-of-service.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-corporate-terms-of-service versions: fpt: '*' -topics: - - Policy - - Legal --- diff --git a/content/site-policy/github-terms/github-dpa-previews.md b/content/site-policy/github-terms/github-dpa-previews.md index e77c903b1611..1687667220e3 100644 --- a/content/site-policy/github-terms/github-dpa-previews.md +++ b/content/site-policy/github-terms/github-dpa-previews.md @@ -3,9 +3,6 @@ title: GitHub DPA-Covered Previews allowTitleToDifferFromFilename: true versions: fpt: '*' -topics: - - Policy - - Legal --- ## GitHub DPA-Covered Previews diff --git a/content/site-policy/github-terms/github-educational-use-agreement.md b/content/site-policy/github-terms/github-educational-use-agreement.md index 691055b9ae4d..e2f296e23a7e 100644 --- a/content/site-policy/github-terms/github-educational-use-agreement.md +++ b/content/site-policy/github-terms/github-educational-use-agreement.md @@ -2,10 +2,6 @@ title: GitHub Educational Use Agreement versions: fpt: '*' -topics: - - Policy - - Legal - - Education --- > [!NOTE] diff --git a/content/site-policy/github-terms/github-event-code-of-conduct.md b/content/site-policy/github-terms/github-event-code-of-conduct.md index 88934aba68df..c48921c5ed8c 100644 --- a/content/site-policy/github-terms/github-event-code-of-conduct.md +++ b/content/site-policy/github-terms/github-event-code-of-conduct.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-event-code-of-conduct versions: fpt: '*' -topics: - - Policy - - Legal --- ## Code of Conduct diff --git a/content/site-policy/github-terms/github-event-terms.md b/content/site-policy/github-terms/github-event-terms.md index c2b540135e4f..75dd8e4479ae 100644 --- a/content/site-policy/github-terms/github-event-terms.md +++ b/content/site-policy/github-terms/github-event-terms.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-event-terms versions: fpt: '*' -topics: - - Policy - - Legal --- By RSVP'ing to or attending a GitHub event, including any of the events or activities organized by GitHub in association with the GitHub event (collectively the "Event"), you represent that you have read, understand, and agree to the following GitHub Event Terms (hereinafter “Event Terms”). diff --git a/content/site-policy/github-terms/github-marketplace-developer-agreement.md b/content/site-policy/github-terms/github-marketplace-developer-agreement.md index 6f7db1948bea..c3bb0d818ce8 100644 --- a/content/site-policy/github-terms/github-marketplace-developer-agreement.md +++ b/content/site-policy/github-terms/github-marketplace-developer-agreement.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-marketplace-developer-agreement versions: fpt: '*' -topics: - - Policy - - Legal --- diff --git a/content/site-policy/github-terms/github-marketplace-terms-of-service.md b/content/site-policy/github-terms/github-marketplace-terms-of-service.md index 8562c7b52701..75a2092ec405 100644 --- a/content/site-policy/github-terms/github-marketplace-terms-of-service.md +++ b/content/site-policy/github-terms/github-marketplace-terms-of-service.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-marketplace-terms-of-service versions: fpt: '*' -topics: - - Policy - - Legal --- Welcome to GitHub Marketplace ("Marketplace")! We're happy you're here. Please read these Terms of Service ("Marketplace Terms") carefully before accessing or using GitHub Marketplace. GitHub Marketplace is a platform that allows you to select developer apps or actions (for free or for a charge) that can be used with your GitHub.com account ("Developer Products"). Although offered by GitHub, Inc. ("GitHub", "we", "us"), Developer Products may be developed and maintained by either GitHub or by third-party software providers. Your selection or use of Developer Products is subject to these Marketplace Terms and any applicable fees, and may require you to agree to additional terms as provided by the third party licensor of that Developer Product (the "Product Provider"). Your use of GitHub Models is subject to the [GitHub Terms for Additional Products and Features](/site-policy/github-terms/github-terms-for-additional-products-and-features). diff --git a/content/site-policy/github-terms/github-open-source-applications-terms-and-conditions.md b/content/site-policy/github-terms/github-open-source-applications-terms-and-conditions.md index fa7d2b8ec1f2..d7f92a2015ed 100644 --- a/content/site-policy/github-terms/github-open-source-applications-terms-and-conditions.md +++ b/content/site-policy/github-terms/github-open-source-applications-terms-and-conditions.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-open-source-applications-terms-and-conditions versions: fpt: '*' -topics: - - Policy - - Legal --- These GitHub Open Source Applications Terms and Conditions ("Application Terms") are a legal agreement between you (either as an individual or on behalf of an entity) and GitHub, Inc. regarding your use of GitHub's applications, such as GitHub Desktop™ and associated documentation ("Software"). These Application Terms apply to the executable code version of the Software. Source code for the Software is available separately and free of charge under open source software license agreements. If you do not agree to all of the terms in these Application Terms, do not download, install, use, or copy the Software. diff --git a/content/site-policy/github-terms/github-pre-release-license-terms.md b/content/site-policy/github-terms/github-pre-release-license-terms.md index dd19910a604f..13d0f974287e 100644 --- a/content/site-policy/github-terms/github-pre-release-license-terms.md +++ b/content/site-policy/github-terms/github-pre-release-license-terms.md @@ -7,9 +7,6 @@ redirect_from: - /site-policy/github-terms/github-copilot-pre-release-license-terms versions: fpt: '*' -topics: - - Policy - - Legal --- ## GitHub Pre-release License Terms diff --git a/content/site-policy/github-terms/github-registered-developer-agreement.md b/content/site-policy/github-terms/github-registered-developer-agreement.md index 82c10c29fa44..f0e1f041aa55 100644 --- a/content/site-policy/github-terms/github-registered-developer-agreement.md +++ b/content/site-policy/github-terms/github-registered-developer-agreement.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-registered-developer-agreement versions: fpt: '*' -topics: - - Policy - - Legal --- GitHub is fortunate to have many developers integrating with our platform. We think that’s awesome, and we want to make that experience even better. GitHub’s Developer Program (the “Program”) helps us to connect with you, share information with you, and support your creative efforts better than ever before. The special relationship between GitHub and the developer community that the Program creates requires a special set of terms. Welcome to the Registered Developer Agreement (“Agreement”). diff --git a/content/site-policy/github-terms/github-research-program-terms.md b/content/site-policy/github-terms/github-research-program-terms.md index aaed1163ba27..0f912315422e 100644 --- a/content/site-policy/github-terms/github-research-program-terms.md +++ b/content/site-policy/github-terms/github-research-program-terms.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-research-program-terms versions: fpt: '*' -topics: - - Policy - - Legal --- Welcome to the GitHub Research Program (the "Program")! To participate, we’ll need you to agree to a special set of terms, the GitHub Research Program Agreement (“Agreement”). diff --git a/content/site-policy/github-terms/github-sponsors-additional-terms.md b/content/site-policy/github-terms/github-sponsors-additional-terms.md index 72570848d4f3..c59fbf44fffd 100644 --- a/content/site-policy/github-terms/github-sponsors-additional-terms.md +++ b/content/site-policy/github-terms/github-sponsors-additional-terms.md @@ -5,9 +5,6 @@ redirect_from: - /github/site-policy/github-sponsors-additional-terms versions: fpt: '*' -topics: - - Policy - - Legal --- Your participation in the GitHub Sponsors Program (the "Program") is subject to the [GitHub Terms of Service](/site-policy/github-terms/github-terms-of-service) (the "Agreement") or other agreement you have with GitHub (for example the GitHub Customer General Terms, the GitHub Corporate Terms of Service or other agreement), as well as the following additional terms ("Additional Terms"). Any use of the GitHub Sponsors Program that violates the Agreement will also be a violation of these Additional Terms. Any capitalized terms used but not defined below have the meanings in the Agreement. These Additional Terms for the GitHub Sponsors Program describe the relationship between GitHub and you, the "Sponsored Developer", for the Program. The Additional Terms are effective as of the date you accept them ("Effective Date"). diff --git a/content/site-policy/github-terms/github-terms-for-additional-products-and-features.md b/content/site-policy/github-terms/github-terms-for-additional-products-and-features.md index 64102fd68fdf..5ab7a5d90e2d 100644 --- a/content/site-policy/github-terms/github-terms-for-additional-products-and-features.md +++ b/content/site-policy/github-terms/github-terms-for-additional-products-and-features.md @@ -9,9 +9,6 @@ redirect_from: - /github/site-policy/github-connect-addendum-to-the-github-enterprise-license-agreement versions: fpt: '*' -topics: - - Policy - - Legal --- Version Effective Date: April 1, 2025 diff --git a/content/site-policy/github-terms/github-terms-of-service.md b/content/site-policy/github-terms/github-terms-of-service.md index 4ddb68bce90e..8b94bf7e9d24 100644 --- a/content/site-policy/github-terms/github-terms-of-service.md +++ b/content/site-policy/github-terms/github-terms-of-service.md @@ -9,9 +9,6 @@ redirect_from: - /github/site-policy/github-terms-of-service versions: fpt: '*' -topics: - - Policy - - Legal --- diff --git a/content/site-policy/github-terms/index.md b/content/site-policy/github-terms/index.md index a61c00840074..6cc94d40b7d3 100644 --- a/content/site-policy/github-terms/index.md +++ b/content/site-policy/github-terms/index.md @@ -2,9 +2,6 @@ title: GitHub Terms versions: fpt: '*' -topics: - - Policy - - Legal children: - /github-terms-of-service - /github-corporate-terms-of-service diff --git a/content/site-policy/index.md b/content/site-policy/index.md index 598f70e54174..d904faae025d 100644 --- a/content/site-policy/index.md +++ b/content/site-policy/index.md @@ -7,9 +7,6 @@ redirect_from: - /github/site-policy versions: fpt: '*' -topics: - - Policy - - Legal children: - /github-terms - /acceptable-use-policies diff --git a/content/site-policy/other-site-policies/github-account-recovery-policy.md b/content/site-policy/other-site-policies/github-account-recovery-policy.md index ceeaaa849273..10238ce21102 100644 --- a/content/site-policy/other-site-policies/github-account-recovery-policy.md +++ b/content/site-policy/other-site-policies/github-account-recovery-policy.md @@ -2,10 +2,6 @@ title: GitHub Account Recovery Policy versions: fpt: '*' -topics: - - 2FA - - Policy - - Legal --- GitHub provides [a number of account recovery methods](/authentication/securing-your-account-with-two-factor-authentication-2fa/recovering-your-account-if-you-lose-your-2fa-credentials) including an [automated recovery process](/authentication/securing-your-account-with-two-factor-authentication-2fa/recovering-your-account-if-you-lose-your-2fa-credentials#authenticating-with-a-verified-device-ssh-token-or-personal-access-token) if you have lost access to your GitHub.com account. **If you cannot use any of the provided recovery methods, you have permanently lost access to your account.** diff --git a/content/site-policy/other-site-policies/github-and-trade-controls.md b/content/site-policy/other-site-policies/github-and-trade-controls.md index 9e337635c053..b968561b657f 100644 --- a/content/site-policy/other-site-policies/github-and-trade-controls.md +++ b/content/site-policy/other-site-policies/github-and-trade-controls.md @@ -9,9 +9,6 @@ redirect_from: - /github/site-policy/github-terms-and-other-site-policies/github-and-trade-controls versions: fpt: '*' -topics: - - Policy - - Legal --- GitHub.com, GitHub Enterprise Server, and the information you upload to either product may be subject to trade control regulations, including under the U.S. Export Administration Regulations (the EAR). diff --git a/content/site-policy/other-site-policies/github-deceased-user-policy.md b/content/site-policy/other-site-policies/github-deceased-user-policy.md index 1df37a4c3a80..ca7dd88982b7 100644 --- a/content/site-policy/other-site-policies/github-deceased-user-policy.md +++ b/content/site-policy/other-site-policies/github-deceased-user-policy.md @@ -2,9 +2,6 @@ title: GitHub Deceased User Policy versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-deceased-user-policy - /github/site-policy/github-terms-and-other-site-policies/github-deceased-user-policy diff --git a/content/site-policy/other-site-policies/github-government-takedown-policy.md b/content/site-policy/other-site-policies/github-government-takedown-policy.md index a60fd481341e..3ec7c1785cc5 100644 --- a/content/site-policy/other-site-policies/github-government-takedown-policy.md +++ b/content/site-policy/other-site-policies/github-government-takedown-policy.md @@ -2,9 +2,6 @@ title: GitHub Government Takedown Policy versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-government-takedown-policy - /github/site-policy/github-terms-and-other-site-policies/github-government-takedown-policy diff --git a/content/site-policy/other-site-policies/github-logo-policy.md b/content/site-policy/other-site-policies/github-logo-policy.md index b3571c3cd319..8fd8ef7107bf 100644 --- a/content/site-policy/other-site-policies/github-logo-policy.md +++ b/content/site-policy/other-site-policies/github-logo-policy.md @@ -8,9 +8,6 @@ redirect_from: - /github/site-policy/github-terms-and-other-site-policies/github-logo-policy versions: fpt: '*' -topics: - - Policy - - Legal --- You can add {% data variables.product.prodname_dotcom %} logos to your website or third-party application in some scenarios. For more information and specific guidelines on logo usage, see the [{% data variables.product.prodname_dotcom %} Logos and Usage page](https://github.com/logos). diff --git a/content/site-policy/other-site-policies/github-username-policy.md b/content/site-policy/other-site-policies/github-username-policy.md index 06e2ca1b8182..5403e67d8694 100644 --- a/content/site-policy/other-site-policies/github-username-policy.md +++ b/content/site-policy/other-site-policies/github-username-policy.md @@ -7,9 +7,6 @@ redirect_from: - /github/site-policy/github-terms-and-other-site-policies/github-username-policy versions: fpt: '*' -topics: - - Policy - - Legal --- GitHub account names are available on a first-come, first-served basis, and are intended for immediate and active use. diff --git a/content/site-policy/other-site-policies/guidelines-for-legal-requests-of-user-data.md b/content/site-policy/other-site-policies/guidelines-for-legal-requests-of-user-data.md index 2513d3071a73..60a4c82afc1d 100644 --- a/content/site-policy/other-site-policies/guidelines-for-legal-requests-of-user-data.md +++ b/content/site-policy/other-site-policies/guidelines-for-legal-requests-of-user-data.md @@ -7,9 +7,6 @@ redirect_from: - /github/site-policy/github-terms-and-other-site-policies/guidelines-for-legal-requests-of-user-data versions: fpt: '*' -topics: - - Policy - - Legal --- Are you a law enforcement officer conducting an investigation that may involve user content hosted on GitHub? diff --git a/content/site-policy/other-site-policies/index.md b/content/site-policy/other-site-policies/index.md index 8780bf07f5bb..4ed6bf687495 100644 --- a/content/site-policy/other-site-policies/index.md +++ b/content/site-policy/other-site-policies/index.md @@ -2,9 +2,6 @@ title: Other Site Policies versions: fpt: '*' -topics: - - Policy - - Legal children: - /github-and-trade-controls - /github-deceased-user-policy diff --git a/content/site-policy/privacy-policies/github-candidate-privacy-policy.md b/content/site-policy/privacy-policies/github-candidate-privacy-policy.md index e59e6e037170..15c09ef9e3d5 100644 --- a/content/site-policy/privacy-policies/github-candidate-privacy-policy.md +++ b/content/site-policy/privacy-policies/github-candidate-privacy-policy.md @@ -3,9 +3,6 @@ title: GitHub Global Data Privacy Notice for Candidates allowTitleToDifferFromFilename: true versions: fpt: '*' -topics: - - Policy - - Legal redirect_from: - /github/site-policy/github-candidate-privacy-policy --- diff --git a/content/site-policy/privacy-policies/github-cookies.md b/content/site-policy/privacy-policies/github-cookies.md index 05fd11422ec4..6b65be43b53d 100644 --- a/content/site-policy/privacy-policies/github-cookies.md +++ b/content/site-policy/privacy-policies/github-cookies.md @@ -5,9 +5,6 @@ redirect_from: - /github-cookies versions: fpt: '*' -topics: - - Policy - - Legal --- diff --git a/content/site-policy/privacy-policies/github-general-privacy-statement.md b/content/site-policy/privacy-policies/github-general-privacy-statement.md index d56ac0f754cf..8481ed19ec5a 100644 --- a/content/site-policy/privacy-policies/github-general-privacy-statement.md +++ b/content/site-policy/privacy-policies/github-general-privacy-statement.md @@ -13,9 +13,6 @@ redirect_from: - /site-policy/privacy-policies/github-codespaces-privacy-statement versions: fpt: '*' -topics: - - Policy - - Legal --- diff --git a/content/site-policy/privacy-policies/github-subprocessors.md b/content/site-policy/privacy-policies/github-subprocessors.md index 07e4661c9642..cfaaf0816014 100644 --- a/content/site-policy/privacy-policies/github-subprocessors.md +++ b/content/site-policy/privacy-policies/github-subprocessors.md @@ -8,9 +8,6 @@ redirect_from: - /site-policy/privacy-policies/github-subprocessors-and-cookies versions: fpt: '*' -topics: - - Policy - - Legal --- GitHub defines customer data as all data provided by the customer to GitHub through their use of GitHub services. Some customer data is personal data as defined under GDPR. diff --git a/content/site-policy/privacy-policies/index.md b/content/site-policy/privacy-policies/index.md index e26a5f1176af..a29ee061b396 100644 --- a/content/site-policy/privacy-policies/index.md +++ b/content/site-policy/privacy-policies/index.md @@ -2,9 +2,6 @@ title: Privacy Policies versions: fpt: '*' -topics: - - Policy - - Legal children: - /github-general-privacy-statement - /github-subprocessors diff --git a/content/site-policy/security-policies/coordinated-disclosure-of-security-vulnerabilities.md b/content/site-policy/security-policies/coordinated-disclosure-of-security-vulnerabilities.md index 7e9ba1326beb..5404eea0e8c1 100644 --- a/content/site-policy/security-policies/coordinated-disclosure-of-security-vulnerabilities.md +++ b/content/site-policy/security-policies/coordinated-disclosure-of-security-vulnerabilities.md @@ -8,9 +8,6 @@ redirect_from: - /github/site-policy/coordinated-disclosure-of-security-vulnerabilities versions: fpt: '*' -topics: - - Policy - - Legal --- We want to keep GitHub safe for everyone. If you've discovered a security vulnerability in GitHub, we appreciate your help in disclosing it to us in a coordinated manner. diff --git a/content/site-policy/security-policies/github-bug-bounty-program-legal-safe-harbor.md b/content/site-policy/security-policies/github-bug-bounty-program-legal-safe-harbor.md index 1818712ee97e..81659db5dacb 100644 --- a/content/site-policy/security-policies/github-bug-bounty-program-legal-safe-harbor.md +++ b/content/site-policy/security-policies/github-bug-bounty-program-legal-safe-harbor.md @@ -4,9 +4,6 @@ redirect_from: - /articles/github-bug-bounty-program-legal-safe-harbor versions: fpt: '*' -topics: - - Policy - - Legal --- ## Summary diff --git a/content/site-policy/security-policies/github-sirt-description-rfc-2350.md b/content/site-policy/security-policies/github-sirt-description-rfc-2350.md index 7c6b155a6a44..aefb2f93ef76 100644 --- a/content/site-policy/security-policies/github-sirt-description-rfc-2350.md +++ b/content/site-policy/security-policies/github-sirt-description-rfc-2350.md @@ -2,9 +2,6 @@ title: GitHub SIRT description RFC 2350 versions: fpt: '*' -topics: - - Policy - - Legal --- diff --git a/content/site-policy/security-policies/index.md b/content/site-policy/security-policies/index.md index 51212f8c522c..380e3314c403 100644 --- a/content/site-policy/security-policies/index.md +++ b/content/site-policy/security-policies/index.md @@ -2,9 +2,6 @@ title: Security Policies versions: fpt: '*' -topics: - - Policy - - Legal children: - /coordinated-disclosure-of-security-vulnerabilities - /github-bug-bounty-program-legal-safe-harbor