Skip to content

Repo sync #35062

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions content/index.md
Original file line number Diff line number Diff line change
@@ -100,7 +100,14 @@ childGroups:
- repositories
- pull-requests
- discussions
- name: GitHub Copilot
octicon: CopilotIcon
children:
- copilot
- copilot/using-github-copilot/getting-code-suggestions-in-your-ide-with-github-copilot
- copilot/using-github-copilot/prompt-engineering-for-github-copilot
- copilot/using-github-copilot/asking-github-copilot-questions-in-githubcom
- copilot/using-github-copilot/example-use-cases/refactoring-code-with-github-copilot
- name: CI/CD and DevOps
octicon: GearIcon
children:
@@ -128,21 +135,22 @@ childGroups:
- issues
- issues/planning-and-tracking-with-projects
- search-github
- name: Enterprise and Teams
octicon: OrganizationIcon
children:
- organizations
- code-security/securing-your-organization
- admin
- gh-wa
- name: Developers
octicon: CodeSquareIcon
children:
- apps
- rest
- graphql
- webhooks
- copilot/building-copilot-extensions
- github-models
- name: Enterprise and Teams
octicon: OrganizationIcon
children:
- organizations
- code-security/securing-your-organization
- admin
- gh-wa
- name: Community
octicon: GlobeIcon
children:
Original file line number Diff line number Diff line change
@@ -2,6 +2,6 @@ You can upgrade {% data variables.product.prodname_ghe_server %} to the latest p

You can use hotpatching to upgrade to a newer patch release, but not a feature release. For example, you can upgrade from 2.10.1 to 2.10.5 because they are in the same feature series, but not from 2.10.9 to 2.11.0 because they are in a different feature series.

Hotpatches do not generally require a reboot. If a hotpatch does require a reboot, the {% data variables.product.product_name %} release notes will indicate the requirement.
Hotpatches do not always require a reboot. When you install the hotpatch, you'll see a message in the terminal if any of the packages need a reboot to complete the update. You can schedule this reboot at a convenient time but we recommend rebooting as soon as practical, especially if there are any security fixes.

Hotpatches require a configuration run, which can cause a brief period of errors or unresponsiveness for some or all services on {% data variables.location.product_location %}. You are not required to enable maintenance mode during installation of a hotpatch, but doing so will guarantee that users see a maintenance page instead of errors or timeouts. See "[AUTOTITLE](/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode)."
5 changes: 5 additions & 0 deletions src/landings/components/ProductSelectionCard.tsx
Original file line number Diff line number Diff line change
@@ -10,6 +10,11 @@ type ProductSelectionCardProps = {
}

export const ProductSelectionCard = ({ group }: ProductSelectionCardProps) => {
// Don't display the group if it has no children due to versioning
if (!group.children || group.children.length === 0) {
return null
}

const groupIcon = {
height: '22px',
}
Loading