Skip to content

Commit 276dd36

Browse files
authored
Merge pull request #36465 from github/repo-sync
Repo sync
2 parents b0ae20c + e65beba commit 276dd36

File tree

159 files changed

+149
-917602
lines changed

Some content is hidden

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

159 files changed

+149
-917602
lines changed

content/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile.md

-7
Original file line numberDiff line numberDiff line change
@@ -151,15 +151,8 @@ If you select the "Busy" option, when people @mention your username, assign you
151151

152152
1. In the top right corner of {% data variables.product.prodname_dotcom %}, select your profile photo, then click **{% octicon "smiley" aria-hidden="true" %} Set status** or, if you already have a status set, click your current status.
153153

154-
{% ifversion global-nav-update %}
155-
156154
![Screenshot of the dropdown menu under @octocat's profile picture. A smiley icon and "Set status" are outlined in dark orange.](/assets/images/help/profile/set-status-on-profile-global-nav-update.png)
157155

158-
{% else %}
159-
160-
![Screenshot of the dropdown menu under @octocat's profile picture. A smiley icon and "Set status" are outlined in dark orange.](/assets/images/help/profile/set-status-on-profile.png)
161-
162-
{% endif %}
163156
1. In the "What's happening" field, type a status message.
164157
1. Optionally, to set an emoji status, click {% octicon "smiley" aria-label="Choose an emoji" %}, then click an emoji from the list.
165158
1. Optionally, if you'd like to share that you have limited availability, select "Busy."

content/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-user-account-settings/about-your-personal-dashboard.md

-5
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,10 @@ In the "Recent activity" section of your news feed, you can quickly find and fol
3232

3333
## Finding your top repositories and teams
3434

35-
{% ifversion global-nav-update %}
3635
In the global navigation menu, you can access the top repositories and teams you use. To open the menu, select {% octicon "three-bars" aria-label="Open global navigation menu" %} at the top left of any page.
3736

3837
![Screenshot of the navigation bar on {% data variables.product.github %}. The "Open global navigation menu" icon is outlined in dark orange.](/assets/images/help/navigation/global-navigation-menu-icon.png)
3938

40-
{% else %}
41-
In the left sidebar of your dashboard, you can access the top repositories and teams you use.
42-
{% endif %}
43-
4439
The list of top repositories is automatically generated, and can include any repository you have interacted with, whether it's owned directly by your account or not. Interactions include making commits and opening or commenting on issues and pull requests. The list of top repositories cannot be edited, but repositories will drop off the list 1 year after you last interacted with them.
4540

4641
You can also find a list of your recently visited repositories, teams, and projects when you click into the search bar at the top of any page on {% data variables.product.github %}.

content/actions/managing-workflow-runs-and-deployments/managing-deployments/managing-environments-for-deployment.md

+10-20
Original file line numberDiff line numberDiff line change
@@ -73,34 +73,26 @@ Use a wait timer to delay a job for a specific amount of time after the job is i
7373
7474
{% endif %}
7575

76-
### Deployment branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %}
76+
### Deployment branches and tags
7777

78-
Use deployment branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %} to restrict which branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %} can deploy to the environment. Below are the options for deployment branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %} for an environment:
78+
Use deployment branches and tags to restrict which branches and tags can deploy to the environment. Below are the options for deployment branches and tags for an environment:
7979

80-
{% ifversion deployment-protections-tag-patterns %}
8180
* **No restriction:** No restriction on which branch or tag can deploy to the environment.
82-
{%- else %}
83-
* **All branches:** All branches in the repository can deploy to the environment.
84-
{%- endif %}
85-
* **Protected branches{% ifversion deployment-protections-tag-patterns %} only{% endif %}:** Only branches with branch protection rules enabled can deploy to the environment. If no branch protection rules are defined for any branch in the repository, then all branches can deploy. For more information about branch protection rules, see [AUTOTITLE](/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches).
81+
* **Protected branches only:** Only branches with branch protection rules enabled can deploy to the environment. If no branch protection rules are defined for any branch in the repository, then all branches can deploy. For more information about branch protection rules, see [AUTOTITLE](/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches).
8682

8783
> [!NOTE]
8884
> Deployment workflow runs triggered by tags with the same name as a protected branch and forks with branches that match the protected branch name cannot deploy to the environment.
8985
90-
* **Selected branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %}:** Only branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %} that match your specified name patterns can deploy to the environment.
86+
* **Selected branches and tags:** Only branches and tags that match your specified name patterns can deploy to the environment.
9187

92-
If you specify `releases/*` as a deployment branch{% ifversion deployment-protections-tag-patterns %} or tag{% endif %} rule, only a branch{% ifversion deployment-protections-tag-patterns %} or tag{% endif %} whose name begins with `releases/` can deploy to the environment. (Wildcard characters will not match `/`. To match branches{% ifversion deployment-protections-tag-patterns %} or tags{% endif %} that begin with `release/` and contain an additional single slash, use `release/*/*`.) If you add `main` as a branch rule, a branch named `main` can also deploy to the environment. For more information about syntax options for deployment branches, see the [Ruby `File.fnmatch` documentation](https://ruby-doc.org/core-2.5.1/File.html#method-c-fnmatch).
93-
94-
{% ifversion deployment-protections-tag-patterns %}
88+
If you specify `releases/*` as a deployment branch or tag rule, only a branch or tag whose name begins with `releases/` can deploy to the environment. (Wildcard characters will not match `/`. To match branches or tags that begin with `release/` and contain an additional single slash, use `release/*/*`.) If you add `main` as a branch rule, a branch named `main` can also deploy to the environment. For more information about syntax options for deployment branches, see the [Ruby `File.fnmatch` documentation](https://ruby-doc.org/core-2.5.1/File.html#method-c-fnmatch).
9589

9690
{% data reusables.actions.branch-and-tag-deployment-rules-configuration %}
9791

98-
{% endif %}
99-
10092
{% ifversion fpt %}
10193

10294
> [!NOTE]
103-
> Deployment branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %} are available for all public repositories. For users on {% data variables.product.prodname_pro %} or {% data variables.product.prodname_team %} plans, deployment branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %} are also available for private repositories.
95+
> Deployment branches and tags are available for all public repositories. For users on {% data variables.product.prodname_pro %} or {% data variables.product.prodname_team %} plans, deployment branches and tags are also available for private repositories.
10496
10597
{% endif %}
10698

@@ -191,16 +183,14 @@ Variables stored in an environment are only available to workflow jobs that refe
191183
1. Optionally, enable any custom deployment protection rules that have been created with {% data variables.product.prodname_github_apps %}. For more information, see [Custom deployment protection rules](#custom-deployment-protection-rules).
192184
1. Select the custom protection rule you want to enable.
193185
1. Click **Save protection rules**.
194-
1. Optionally, specify what branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %} can deploy to this environment. For more information, see [Deployment branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %}](/actions/deployment/targeting-different-environments/managing-environments-for-deployment#deployment-branches{% ifversion deployment-protections-tag-patterns %}-and-tags{% endif %}).
186+
1. Optionally, specify what branches and tags can deploy to this environment. For more information, see [Deployment branches and tags](/actions/deployment/targeting-different-environments/managing-environments-for-deployment#deployment-branches-and-tags).
195187
1. Select the desired option in the **Deployment branches** dropdown.
196-
1. If you chose **Selected branches{% ifversion deployment-protections-tag-patterns %} and tags{% endif %}**, to add a new rule, click **Add deployment branch{% ifversion deployment-protections-tag-patterns %} or tag{% endif %} rule**
197-
{% ifversion deployment-protections-tag-patterns %}1. In the "Ref type" dropdown menu, depending on what rule you want to apply, click **{% octicon "git-branch" aria-hidden="true" %} Branch** or **{% octicon "tag" aria-hidden="true" %} Tag**.{% endif %}
198-
1. Enter the name pattern for the branch{% ifversion deployment-protections-tag-patterns %} or tag{% endif %} that you want to allow.
199-
{% ifversion deployment-protections-tag-patterns %}
188+
1. If you chose **Selected branches and tags**, to add a new rule, click **Add deployment branch or tag rule**
189+
1. In the "Ref type" dropdown menu, depending on what rule you want to apply, click **{% octicon "git-branch" aria-hidden="true" %} Branch** or **{% octicon "tag" aria-hidden="true" %} Tag**.
190+
1. Enter the name pattern for the branch or tag that you want to allow.
200191

201192
{% data reusables.actions.branch-and-tag-deployment-rules-configuration %}
202193

203-
{% endif %}
204194
1. Click **Add rule**.
205195
1. Optionally, add environment secrets. These secrets are only available to workflow jobs that use the environment. Additionally, workflow jobs that use this environment can only access these secrets after any configured rules (for example, required reviewers) pass. For more information, see [Environment secrets](#environment-secrets).
206196
1. Under **Environment secrets**, click **Add Secret**.

content/actions/sharing-automations/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ children:
2020
- /sharing-actions-and-workflows-from-your-private-repository
2121
- /sharing-actions-and-workflows-with-your-organization
2222
- /sharing-actions-and-workflows-with-your-enterprise
23-
- /required-workflows
2423
---
2524

2625
{% data reusables.actions.enterprise-github-hosted-runners %}

content/actions/sharing-automations/required-workflows.md

-53
This file was deleted.

content/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows.md

-4
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,6 @@ on:
339339
types: [created, deleted]
340340
```
341341

342-
{% ifversion merge-queue %}
343-
344342
## `merge_group`
345343

346344
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |
@@ -363,8 +361,6 @@ on:
363361
types: [checks_requested]
364362
```
365363

366-
{% endif %}
367-
368364
## `milestone`
369365

370366
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |

content/admin/administering-your-instance/administering-your-instance-from-the-command-line/command-line-utilities.md

-7
Original file line numberDiff line numberDiff line change
@@ -1297,13 +1297,6 @@ In this example, `ghe-repl-status -vv` sends verbose status information from a r
12971297
12981298
During an upgrade to a feature release, this utility displays the status of background jobs on {% data variables.location.product_location %}. If you're running back-to-back upgrades, you should use this utility to check that all background jobs are complete before proceeding with the next upgrade.
12991299
1300-
{% ifversion ghes < 3.12 %}
1301-
1302-
> [!NOTE]
1303-
> To use `ghe-check-background-upgrade-jobs` with {% data variables.product.prodname_ghe_server %} {{ allVersions[currentVersion].currentRelease }}, your instance must run version {{ allVersions[currentVersion].currentRelease }}.1 or later.
1304-
1305-
{% endif %}
1306-
13071300
```shell
13081301
ghe-check-background-upgrade-jobs
13091302
```

content/admin/configuring-settings/configuring-network-settings/network-ports.md

-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ Some administrative ports are required to configure {% data variables.location.p
3131
| 1194/UDP | VPN | Secure replication network tunnel in high availability configuration. Required to be open for communication between all nodes in the configuration.|
3232
| 123/UDP| NTP | Required for time protocol operation. |
3333
| 161/UDP | SNMP | Required for network monitoring protocol operation. |
34-
| {% ifversion ghes > 3.11 %} |
3534
| 9103/TCP | HTTP | Required for future support of Prometheus scraping. |
36-
| {% endif %} |
3735

3836
## Application ports for end users
3937

content/admin/configuring-settings/configuring-user-applications-for-your-enterprise/configuring-interactive-maps.md

+4-25
Original file line numberDiff line numberDiff line change
@@ -21,40 +21,20 @@ To enable interactive maps, you must provide authentication credentials for Azur
2121
{% ifversion ghes < 3.13 %}
2222

2323
> [!WARNING]
24-
> Authentication with Azure Maps using an API token is {% data variables.release-phases.retired %} in {% data variables.product.prodname_ghe_server %} {{ allVersions[currentVersion].currentRelease }}.{% ifversion ghes = 3.11 %}1{% endif %} and later. If you upgrade to the latest release of {% data variables.product.prodname_ghe_server %} on an instance already configured to authenticate with an API token, interactive maps will be disabled. You must reconfigure authentication using role-based access control (RBAC) for an application on a Microsoft Entra ID (previously known as Azure AD) tenant. {% data reusables.enterprise.azure-maps-auth-deprecation-link %}
24+
> Authentication with Azure Maps using an API token is {% data variables.release-phases.retired %} in {% data variables.product.prodname_ghe_server %} 3.12 and later. If you upgrade to the latest release of {% data variables.product.prodname_ghe_server %} on an instance already configured to authenticate with an API token, interactive maps will be disabled. You must reconfigure authentication using role-based access control (RBAC) for an application on a Microsoft Entra ID (previously known as Azure AD) tenant. {% data reusables.enterprise.azure-maps-auth-deprecation-link %}
2525
2626
{% endif %}
2727

2828
## Prerequisites
2929

30-
{% ifversion ghes < 3.12 %}
31-
32-
The following prerequisites apply if your instance runs {% data variables.product.prodname_ghe_server %} {{ allVersions[currentVersion].currentRelease }}.1 or later.
33-
34-
{% endif %}
35-
3630
* To configure interactive maps for your instance, you must have administrative access to a tenant in Microsoft Entra ID. For more information, contact the administrator for Microsoft resources at your company, or see [Quickstart: Create a new tenant in Microsoft Entra ID](https://learn.microsoft.com/entra/fundamentals/create-new-tenant) on Microsoft Learn.
3731

3832
* You must know the tenant ID for your tenant in Entra ID. For more information, see [Get subscription and tenant IDs in the Azure portal](https://learn.microsoft.com/en-us/azure/azure-portal/get-subscription-tenant-id#find-your-microsoft-entra-tenant) on Microsoft Learn.
3933

4034
* Your instance must be able to access https://login.microsoftonline.com.
4135

42-
{% ifversion ghes < 3.12 %}
43-
44-
If your instance runs {% data variables.product.prodname_ghe_server %} {{ allVersions[currentVersion].currentRelease }}.0, you must provide an API token for Azure Maps instead.
45-
46-
{% data reusables.enterprise.azure-maps-auth-warning %}
47-
48-
{% endif %}
49-
5036
## Generating credentials for Azure Maps
5137

52-
{% ifversion ghes < 3.12 %}
53-
54-
To configure authentication for Azure Maps using RBAC, your instance must run {% data variables.product.prodname_ghe_server %} {{ allVersions[currentVersion].currentRelease }}.1 or later.
55-
56-
{% endif %}
57-
5838
To generate credentials for Azure Maps, you must create an application for your tenant in Entra ID, provide the application access to an Azure Maps account, and configure role-based access control (RBAC).
5939

6040
1. Register a new application on your Entra ID tenant. For more information, see [Quickstart: Register an application with the Microsoft identity platform](https://learn.microsoft.com/entra/identity-platform/quickstart-register-app#register-an-application) on Microsoft Learn.
@@ -90,11 +70,10 @@ After you create an application on your Entra ID tenant and generate a secret fo
9070
```
9171

9272
Store the string in a secure location that you can reference in the next step.
93-
1. {% ifversion ghes > 3.11 %}Below the headings, type or paste{% else %}Enter{% endif %} your authentication details for Azure Maps.
73+
1. Below the headings, type or paste your authentication details for Azure Maps.
9474

95-
* If your instance runs {% data variables.product.prodname_ghe_server %} {{ allVersions[currentVersion].currentRelease }}.{% ifversion ghes = 3.11 %}0{% endif %}, below "Azure Maps API Token", type or paste your token.
96-
%}
97-
* If your instance runs {% data variables.product.prodname_ghe_server %} {{ allVersions[currentVersion].currentRelease }}.{% ifversion ghes = 3.11 %}1{% endif %} or later, below the headings, type or paste the following information.
75+
* If your instance runs {% data variables.product.prodname_ghe_server %} {{ allVersions[currentVersion].currentRelease }}, below "Azure Maps API Token", type or paste your token.
76+
* If your instance runs {% data variables.product.prodname_ghe_server %} {{ allVersions[currentVersion].currentRelease }} or later, below the headings, type or paste the following information.
9877

9978
* Optionally, to change the style of rendered maps, under "Basemap ID", type the ID for the style you'd like to use.
10079
* Under the headings, type or paste your authentication details.

0 commit comments

Comments
 (0)