Skip to content

Commit b3e1ff4

Browse files
authored
Update documentation for GitHub AE's December 2021 release (github#23405)
1 parent db3254b commit b3e1ff4

File tree

284 files changed

+622
-2372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+622
-2372
lines changed
Loading
Loading
Loading
Loading
Loading

components/release-notes/GHAEReleaseNotePatch.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ export function GHAEReleaseNotePatch({ patch, didEnterView }: Props) {
1616
}
1717
}, [onScreen])
1818

19-
const bannerText = patch.currentWeek
20-
? t('banner_text_current')
21-
: `${t('banner_text_past')} ${patch.friendlyDate}.`
19+
const bannerText = t('banner_text')
2220

2321
return (
2422
<div
@@ -45,7 +43,7 @@ export function GHAEReleaseNotePatch({ patch, didEnterView }: Props) {
4543
<button className="js-print btn-link ml-3 text-small text-bold">Print</button>
4644
</div>
4745
<p className="color-fg-muted mt-1">
48-
{patch.friendlyDate} - {bannerText}
46+
{bannerText} {patch.friendlyDate}.
4947
</p>
5048
</header>
5149

components/release-notes/GHAEReleaseNotes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const CollapsibleReleaseSection = ({
8585
{release.version}
8686
<div className="d-flex">
8787
<span className="color-fg-muted text-small text-normal mr-1">
88-
{release.patches.length} releases
88+
{release.patches.length} {release.patches.length === 1 ? 'release' : 'releases'}
8989
</span>
9090
<ChevronDownIcon className={isOpen ? 'rotate-180' : ''} />
9191
</div>

components/release-notes/GHESReleaseNotes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ const CollapsibleReleaseSection = ({
166166
{release.version}
167167
<div className="d-flex">
168168
<span className="color-fg-muted text-small text-normal mr-1">
169-
{release.patches.length} releases
169+
{release.patches.length} {release.patches.length === 1 ? 'release' : 'releases'}
170170
</span>
171171
<ChevronDownIcon className={isOpen ? 'rotate-180' : ''} />
172172
</div>

components/release-notes/PatchNotes.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,7 @@ export function PatchNotes({ patch, withReleaseNoteLabel }: Props) {
9393
</h4>
9494
{item.notes.map((note) => {
9595
return (
96-
<li
97-
key={note}
98-
className={cx(!withReleaseNoteLabel && 'list-style-none', 'f4')}
99-
dangerouslySetInnerHTML={{ __html: note }}
100-
/>
96+
<li key={note} className="f4" dangerouslySetInnerHTML={{ __html: note }} />
10197
)
10298
})}
10399
</Fragment>

content/account-and-profile/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github/managing-your-subscriptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ When you unwatch a repository, you unsubscribe from future updates from that rep
6565
1. In the left sidebar, under the list of repositories, use the "Manage notifications" drop-down to click **Watched repositories**.
6666
![Manage notifications drop down menu options](/assets/images/help/notifications-v2/manage-notifications-options.png)
6767
2. On the watched repositories page, after you've evaluated the repositories you're watching, choose whether to:
68-
{% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
68+
{% ifversion fpt or ghes > 3.0 or ghae or ghec %}
6969
- Unwatch a repository
7070
- Ignore all notifications for a repository
7171
- Customize the types of event you receive notifications for ({% data reusables.notifications-v2.custom-notification-types %}, if enabled)

content/account-and-profile/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github/viewing-your-subscriptions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ When your inbox has too many notifications to manage, consider whether you have
3838
For more information, see "[Configuring notifications](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#automatic-watching)."
3939

4040
To see an overview of your repository subscriptions, see "[Reviewing repositories that you're watching](#reviewing-repositories-that-youre-watching)."
41-
{% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
41+
{% ifversion fpt or ghes > 3.0 or ghae or ghec %}
4242
{% tip %}
4343

4444
**Tip:** You can select the types of event to be notified of by using the **Custom** option of the **Watch/Unwatch** dropdown list in your [watching page](https://github.com/watching) or on any repository page on {% data variables.product.product_name %}. For more information, see "[Configuring notifications](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository)."
@@ -72,15 +72,15 @@ Many people forget about repositories that they've chosen to watch in the past.
7272
1. In the left sidebar, under the list of repositories, use the "Manage notifications" drop-down menu and click **Watched repositories**.
7373
![Manage notifications drop down menu options](/assets/images/help/notifications-v2/manage-notifications-options.png)
7474
2. Evaluate the repositories that you are watching and decide if their updates are still relevant and helpful. When you watch a repository, you will be notified of all conversations for that repository.
75-
{% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
75+
{% ifversion fpt or ghes > 3.0 or ghae or ghec %}
7676
![Watched notifications page](/assets/images/help/notifications-v2/watched-notifications-custom.png)
7777
{% else %}
7878
![Watched notifications page](/assets/images/help/notifications-v2/watched-notifications.png)
7979
{% endif %}
8080

8181
{% tip %}
8282

83-
**Tip:** Instead of watching a repository, consider only receiving notifications {% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}when there are updates to {% data reusables.notifications-v2.custom-notification-types %} (if enabled for the repository), or any combination of these options,{% else %}for releases in a repository,{% endif %} or completely unwatching a repository.
83+
**Tip:** Instead of watching a repository, consider only receiving notifications {% ifversion fpt or ghes > 3.0 or ghae or ghec %}when there are updates to {% data reusables.notifications-v2.custom-notification-types %} (if enabled for the repository), or any combination of these options,{% else %}for releases in a repository,{% endif %} or completely unwatching a repository.
8484

8585
When you unwatch a repository, you can still be notified when you're @mentioned or participating in a thread. When you configure to receive notifications for certain event types, you're only notified when there are updates to these event types in the repository, you're participating in a thread, or you or a team you're on is @mentioned.
8686

content/account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/about-notifications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can choose to receive ongoing updates about specific activity on {% data var
2828
You can choose to subscribe to notifications for:
2929
- A conversation in a specific issue, pull request, or gist.
3030
- All activity in a repository or team discussion.
31-
- CI activity, such as the status of workflows in repositories set up with {% data variables.product.prodname_actions %}. {% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
31+
- CI activity, such as the status of workflows in repositories set up with {% data variables.product.prodname_actions %}. {% ifversion fpt or ghes > 3.0 or ghae or ghec %}
3232
- Repository {% data reusables.notifications-v2.custom-notification-types %} (if enabled).{% else %}
3333
- Releases in a repository.{% endif %}
3434

content/account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/configuring-notifications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ To see repositories that you're watching, go to your [watching page](https://git
7676
{% endif %}
7777
You can configure notifications for a repository on the repository page, or on your watching page.{% ifversion ghes < 3.1 %} You can choose to only receive notifications for releases in a repository, or ignore all notifications for a repository.{% endif %}
7878

79-
{% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
79+
{% ifversion fpt or ghes > 3.0 or ghae or ghec %}
8080

8181
### About custom notifications
8282
You can customize notifications for a repository. For example, you can choose to only be notified when updates to one or more types of events ({% data reusables.notifications-v2.custom-notification-types %}) happen within a repository, or ignore all notifications for a repository.
@@ -160,7 +160,7 @@ If "Automatically watch repositories" is disabled, then you will not automatical
160160

161161
## Configuring your watch settings for an individual repository
162162

163-
You can choose whether to watch or unwatch an individual repository. You can also choose to only be notified of {% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}certain event types such as {% data reusables.notifications-v2.custom-notification-types %} (if enabled for the repository) {% else %}new releases{% endif %}, or completely ignore an individual repository.
163+
You can choose whether to watch or unwatch an individual repository. You can also choose to only be notified of {% ifversion fpt or ghes > 3.0 or ghae or ghec %}certain event types such as {% data reusables.notifications-v2.custom-notification-types %} (if enabled for the repository) {% else %}new releases{% endif %}, or completely ignore an individual repository.
164164

165165
{% data reusables.repositories.navigate-to-repo %}
166166
2. In the upper-right corner, select the "Watch" drop-down menu to click a watch option.

content/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ redirect_from:
1010
versions:
1111
fpt: '*'
1212
ghes: '*'
13-
ghae: next
13+
ghae: '*'
1414
ghec: '*'
1515
topics:
1616
- Profiles
@@ -19,7 +19,7 @@ shortTitle: Send enterprise contributions
1919

2020
## About enterprise contributions on your {% data variables.product.prodname_dotcom_the_website %} profile
2121

22-
Your {% data variables.product.prodname_dotcom_the_website %} profile shows {% ifversion fpt or ghec %}{% data variables.product.prodname_ghe_server %}{% ifversion ghae-next %}<!-- Remove condition entirely when toggling feature flag --> or {% data variables.product.prodname_ghe_managed %}{% endif %}{% else %}{% data variables.product.product_name %}{% endif %} contribution counts from the past 90 days. {% data reusables.github-connect.sync-frequency %} Contribution counts from {% data variables.product.prodname_enterprise %} are considered private contributions. The commit details will only show the contribution counts and that these contributions were made in a {% data variables.product.prodname_enterprise %} environment outside of {% data variables.product.prodname_dotcom_the_website %}.
22+
Your {% data variables.product.prodname_dotcom_the_website %} profile shows {% ifversion fpt or ghec %}{% data variables.product.prodname_enterprise %}{% else %}{% data variables.product.product_name %}{% endif %} contribution counts from the past 90 days. {% data reusables.github-connect.sync-frequency %} Contribution counts from {% ifversion fpt or ghec %}{% data variables.product.prodname_enterprise %}{% else %}{% data variables.product.product_name %}{% endif %} are considered private contributions. The commit details will only show the contribution counts and that these contributions were made in a {% data variables.product.prodname_enterprise %} environment outside of {% data variables.product.prodname_dotcom_the_website %}.
2323

2424
You can decide whether to show counts for private contributions on your profile. For more information, see "[Publicizing or hiding your private contributions on your profile](/articles/publicizing-or-hiding-your-private-contributions-on-your-profile/)."
2525

@@ -30,18 +30,16 @@ For more information about how contributions are calculated, see "[Managing cont
3030
**Notes:**
3131
- The connection between your accounts is governed by <a href="/articles/github-privacy-statement/" class="dotcom-only">GitHub's Privacy Statement</a> and users enabling the connection agree to the <a href="/articles/github-terms-of-service/" class="dotcom-only">GitHub's Terms of Service</a>.
3232

33-
- Before you can connect your {% ifversion fpt or ghec %}{% data variables.product.prodname_ghe_server %}{% ifversion ghae-next %}<!-- Remove condition entirely when toggling feature flag --> or {% data variables.product.prodname_ghe_managed %}{% endif %}{% else %}{% data variables.product.product_name %}{% endif %} profile to your {% data variables.product.prodname_dotcom_the_website %} profile, your enterprise owner must enable {% data variables.product.prodname_github_connect %} and enable contribution sharing between the environments. For more information, contact your enterprise owner.
33+
- Before you can connect your {% ifversion fpt or ghec %}{% data variables.product.prodname_enterprise %}{% else %}{% data variables.product.product_name %}{% endif %} profile to your {% data variables.product.prodname_dotcom_the_website %} profile, your enterprise owner must enable {% data variables.product.prodname_github_connect %} and enable contribution sharing between the environments. For more information, contact your enterprise owner.
3434

3535
{% endnote %}
3636

37-
{% ifversion fpt or ghes or ghae or ghec %}
38-
3937
## Sending your enterprise contributions to your {% data variables.product.prodname_dotcom_the_website %} profile
4038

4139
{% ifversion fpt or ghec %}
4240

43-
- To send enterprise contributions from {% data variables.product.prodname_ghe_server %} to your {% data variables.product.prodname_dotcom_the_website %} profile, see "[Sending enterprise contributions to your {% data variables.product.prodname_dotcom_the_website %} profile](/enterprise-server/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile)" in the {% data variables.product.prodname_ghe_server %} documentation.{% ifversion ghae-next %}<!-- Condition is within an fpt block; remove condition entirely when toggling feature flag -->
44-
- To send enterprise contributions from {% data variables.product.prodname_ghe_managed %} to your {% data variables.product.prodname_dotcom_the_website %} profile, see "[Sending enterprise contributions to your {% data variables.product.prodname_dotcom_the_website %} profile](/github-ae@latest/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile)" in the {% data variables.product.prodname_ghe_managed %} documentation.{% endif %}
41+
- To send enterprise contributions from {% data variables.product.prodname_ghe_server %} to your {% data variables.product.prodname_dotcom_the_website %} profile, see "[Sending enterprise contributions to your {% data variables.product.prodname_dotcom_the_website %} profile](/enterprise-server/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile)" in the {% data variables.product.prodname_ghe_server %} documentation.
42+
- To send enterprise contributions from {% data variables.product.prodname_ghe_managed %} to your {% data variables.product.prodname_dotcom_the_website %} profile, see "[Sending enterprise contributions to your {% data variables.product.prodname_dotcom_the_website %} profile](/github-ae@latest/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile)" in the {% data variables.product.prodname_ghe_managed %} documentation.
4543

4644
{% elsif ghes %}
4745

@@ -65,5 +63,3 @@ For more information about how contributions are calculated, see "[Managing cont
6563
{% data reusables.github-connect.send-contribution-counts-to-githubcom %}
6664

6765
{% endif %}
68-
69-
{% endif %}

content/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/viewing-contributions-on-your-profile.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ The contribution activity section includes a detailed timeline of your work, inc
9191

9292
![Contribution activity time filter](/assets/images/help/profile/contributions_activity_time_filter.png)
9393

94-
{% ifversion fpt or ghes or ghae-next or ghec %}
94+
{% ifversion fpt or ghes or ghae or ghec %}
9595

9696
## Viewing contributions from {% data variables.product.prodname_enterprise %} on {% data variables.product.prodname_dotcom_the_website %}
9797

98-
If you use {% ifversion fpt or ghec %}{% data variables.product.prodname_ghe_server %}{% ifversion ghae-next %} or {% data variables.product.prodname_ghe_managed %}{% endif %}{% else %}{% data variables.product.product_name %}{% endif %} and your enterprise owner enables {% data variables.product.prodname_unified_contributions %}, you can send enterprise contribution counts from to your {% data variables.product.prodname_dotcom_the_website %} profile. For more information, see "[Sending enterprise contributions to your {% data variables.product.prodname_dotcom_the_website %} profile](/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile)."
98+
If you use {% ifversion fpt or ghec %}{% data variables.product.prodname_ghe_server %}{% ifversion ghae %} or {% data variables.product.prodname_ghe_managed %}{% endif %}{% else %}{% data variables.product.product_name %}{% endif %} and your enterprise owner enables {% data variables.product.prodname_unified_contributions %}, you can send enterprise contribution counts from to your {% data variables.product.prodname_dotcom_the_website %} profile. For more information, see "[Sending enterprise contributions to your {% data variables.product.prodname_dotcom_the_website %} profile](/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile)."
9999

100100
{% endif %}
101101

content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-your-theme-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Managing your theme settings
33
intro: 'You can manage how {% data variables.product.product_name %} looks to you by setting a theme preference that either follows your system settings or always uses a light or dark mode.'
44
versions:
55
fpt: '*'
6-
ghae: next
6+
ghae: '*'
77
ghes: '>=3.2'
88
ghec: '*'
99
topics:

content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/permission-levels-for-a-user-account-repository.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The repository owner has full control of the repository. In addition to the acti
3434
| :- | :- |
3535
| {% ifversion fpt or ghec %}Invite collaborators{% else %}Add collaborators{% endif %} | "[Inviting collaborators to a personal repository](/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository)" |
3636
| Change the visibility of the repository | "[Setting repository visibility](/github/administering-a-repository/setting-repository-visibility)" |{% ifversion fpt or ghec %}
37-
| Limit interactions with the repository | "[Limiting interactions in your repository](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)" |{% endif %}{% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}
37+
| Limit interactions with the repository | "[Limiting interactions in your repository](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)" |{% endif %}{% ifversion fpt or ghes > 3.0 or ghae or ghec %}
3838
| Rename a branch, including the default branch | "[Renaming a branch](/github/administering-a-repository/renaming-a-branch)" |{% endif %}
3939
| Merge a pull request on a protected branch, even if there are no approving reviews | "[About protected branches](/github/administering-a-repository/about-protected-branches)" |
4040
| Delete the repository | "[Deleting a repository](/github/administering-a-repository/deleting-a-repository)" |
@@ -68,7 +68,7 @@ Collaborators can also perform the following actions.
6868

6969
| Action | More information |
7070
| :- | :- |
71-
| Fork the repository | "[About forks](/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks)" |{% ifversion fpt or ghes > 3.1 or ghae-next or ghec %}
71+
| Fork the repository | "[About forks](/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks)" |{% ifversion fpt or ghes > 3.1 or ghae or ghec %}
7272
| Rename a branch other than the default branch | "[Renaming a branch](/github/administering-a-repository/renaming-a-branch)" |{% endif %}
7373
| Create, edit, and delete comments on commits, pull requests, and issues in the repository | <ul><li>"[About issues](/github/managing-your-work-on-github/about-issues)"</li><li>"[Commenting on a pull request](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request)"</li><li>"[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments)"</li></ul> |
7474
| Create, assign, close, and re-open issues in the repository | "[Managing your work with issues](/github/managing-your-work-on-github/managing-your-work-with-issues)" |

content/actions/advanced-guides/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ children:
1515
- /using-github-cli-in-workflows
1616
---
1717

18-
{% data reusables.actions.ae-beta %}

content/actions/advanced-guides/storing-workflow-data-as-artifacts.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ topics:
2020

2121
{% data reusables.actions.enterprise-beta %}
2222
{% data reusables.actions.enterprise-github-hosted-runners %}
23-
{% data reusables.actions.ae-beta %}
2423

2524
## About workflow artifacts
2625

content/actions/advanced-guides/using-github-cli-in-workflows.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ topics:
1515
type: how_to
1616
---
1717

18-
{% data reusables.actions.ae-beta %}
1918

2019
{% data reusables.cli.cli-learn-more %}
2120

0 commit comments

Comments
 (0)