Skip to content

Commit 9297004

Browse files
authored
Merge pull request github#35062 from github/repo-sync
Repo sync
2 parents de33448 + 51b4cb9 commit 9297004

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

content/index.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,14 @@ childGroups:
100100
- repositories
101101
- pull-requests
102102
- discussions
103+
- name: GitHub Copilot
104+
octicon: CopilotIcon
105+
children:
103106
- copilot
107+
- copilot/using-github-copilot/getting-code-suggestions-in-your-ide-with-github-copilot
108+
- copilot/using-github-copilot/prompt-engineering-for-github-copilot
109+
- copilot/using-github-copilot/asking-github-copilot-questions-in-githubcom
110+
- copilot/using-github-copilot/example-use-cases/refactoring-code-with-github-copilot
104111
- name: CI/CD and DevOps
105112
octicon: GearIcon
106113
children:
@@ -128,21 +135,22 @@ childGroups:
128135
- issues
129136
- issues/planning-and-tracking-with-projects
130137
- search-github
138+
- name: Enterprise and Teams
139+
octicon: OrganizationIcon
140+
children:
141+
- organizations
142+
- code-security/securing-your-organization
143+
- admin
144+
- gh-wa
131145
- name: Developers
132146
octicon: CodeSquareIcon
133147
children:
134148
- apps
135149
- rest
136150
- graphql
137151
- webhooks
152+
- copilot/building-copilot-extensions
138153
- github-models
139-
- name: Enterprise and Teams
140-
octicon: OrganizationIcon
141-
children:
142-
- organizations
143-
- code-security/securing-your-organization
144-
- admin
145-
- gh-wa
146154
- name: Community
147155
octicon: GlobeIcon
148156
children:

data/reusables/enterprise_installation/hotpatching-explanation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ You can upgrade {% data variables.product.prodname_ghe_server %} to the latest p
22

33
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.
44

5-
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.
5+
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.
66

77
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)."

src/landings/components/ProductSelectionCard.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ type ProductSelectionCardProps = {
1010
}
1111

1212
export const ProductSelectionCard = ({ group }: ProductSelectionCardProps) => {
13+
// Don't display the group if it has no children due to versioning
14+
if (!group.children || group.children.length === 0) {
15+
return null
16+
}
17+
1318
const groupIcon = {
1419
height: '22px',
1520
}

0 commit comments

Comments
 (0)