Skip to content

Commit

Permalink
Merge pull request github#35062 from github/repo-sync
Browse files Browse the repository at this point in the history
Repo sync
  • Loading branch information
docs-bot authored Oct 24, 2024
2 parents de33448 + 51b4cb9 commit 9297004
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
22 changes: 15 additions & 7 deletions content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Up @@ -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',
}
Expand Down

0 comments on commit 9297004

Please sign in to comment.