Skip to content

Commit c64d84d

Browse files
heiskrCopilot
andauthored
Deprecate GitHub Enterprise Server 3.16 (#61616)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 123a47a commit c64d84d

466 files changed

Lines changed: 386 additions & 1811353 deletions

File tree

Some content is hidden

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

content/account-and-profile/how-tos/account-settings/index.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,11 @@ versions:
1717
children:
1818
- /managing-security-and-analysis-features
1919
- /managing-your-tab-size-rendering-preference
20-
- /permission-levels-for-a-project-board-owned-by-a-personal-account
2120
- /manage-cookie-preferences
2221
- /managing-accessibility-settings
2322
- /prepare-for-job-change
24-
- /managing-access-to-your-personal-accounts-project-boards
2523
- /integrating-jira-with-your-personal-projects
2624
- /set-your-hiring-status
2725
shortTitle: Account settings
2826
contentType: how-tos
2927
---
30-

content/account-and-profile/how-tos/account-settings/integrating-jira-with-your-personal-projects.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,5 @@ category:
2929

3030
## Next steps
3131

32-
{% ifversion projects-v1 %}
33-
* [AUTOTITLE](/organizations/managing-organization-settings/integrating-jira-with-your-organization-project-board){% endif %}
3432
* [Connect Jira Cloud to GitHub](https://confluence.atlassian.com/adminjiracloud/connect-jira-cloud-to-github-814188429.html) in the Atlassian documentation
3533
* For reference information, see [AUTOTITLE](/account-and-profile/reference/personal-account-reference).

content/account-and-profile/how-tos/account-settings/managing-access-to-your-personal-accounts-project-boards.md

Lines changed: 0 additions & 43 deletions
This file was deleted.

content/account-and-profile/how-tos/account-settings/permission-levels-for-a-project-board-owned-by-a-personal-account.md

Lines changed: 0 additions & 69 deletions
This file was deleted.

content/actions/reference/workflows-and-actions/events-that-trigger-workflows.md

Lines changed: 1 addition & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -428,73 +428,6 @@ on:
428428
page_build
429429
```
430430

431-
{% ifversion projects-v1 %}
432-
433-
## `project`
434-
435-
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |
436-
| --------------------- | -------------- | ------------ | -------------|
437-
| [`project`](/webhooks-and-events/webhooks/webhook-events-and-payloads#project) | - `created`<br/>- `closed`<br/>- `reopened`<br/>- `edited`<br/>- `deleted`<br/> | Last commit on default branch | Default branch |
438-
439-
> [!NOTE]
440-
> * {% data reusables.developer-site.multiple_activity_types %} The `edited` activity type refers to when a {% data variables.projects.projects_v1_board %}, not a column or card on the {% data variables.projects.projects_v1_board %}, is edited. For information about each activity type, see [AUTOTITLE](/webhooks-and-events/webhooks/webhook-events-and-payloads#project). {% data reusables.developer-site.limit_workflow_to_activity_types %}
441-
> * {% data reusables.actions.branch-requirement %}
442-
> * This event only occurs for projects owned by the workflow's repository, not for organization-owned or user-owned projects or for projects owned by another repository.
443-
444-
Runs your workflow when a {% data variables.projects.projects_v1_board %} is created or modified. For activity related to cards or columns in a {% data variables.projects.projects_v1_board %}, use the [`project_card`](#project_card) or [`project_column`](#project_column) events instead. For more information about {% data variables.projects.projects_v1_boards %}, see [AUTOTITLE](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards). For information about the {% data variables.projects.projects_v1_board %} APIs, see [AUTOTITLE](/graphql/reference/projects-classic#object-project) in the GraphQL API documentation or [AUTOTITLE](/rest/projects-classic).
445-
446-
For example, you can run a workflow when a project has been `created` or `deleted`.
447-
448-
```yaml
449-
on:
450-
project:
451-
types: [created, deleted]
452-
```
453-
454-
## `project_card`
455-
456-
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |
457-
| --------------------- | -------------- | ------------ | -------------|
458-
| [`project_card`](/webhooks-and-events/webhooks/webhook-events-and-payloads#project_card) | - `created`<br/>- `moved`<br/>- `converted` to an issue<br/>- `edited`<br/>- `deleted` | Last commit on default branch | Default branch |
459-
460-
> [!NOTE]
461-
> * {% data reusables.developer-site.multiple_activity_types %} For information about each activity type, see [AUTOTITLE](/webhooks-and-events/webhooks/webhook-events-and-payloads#project_card). {% data reusables.developer-site.limit_workflow_to_activity_types %}
462-
> * {% data reusables.actions.branch-requirement %}
463-
> * This event only occurs for projects owned by the workflow's repository, not for organization-owned or user-owned projects or for projects owned by another repository.
464-
465-
Runs your workflow when a card on a {% data variables.projects.projects_v1_board %} is created or modified. For activity related to {% data variables.projects.projects_v1_boards %} or columns in a {% data variables.projects.projects_v1_board %}, use the [`project`](#project) or [`project_column`](#project_column) event instead. For more information about {% data variables.projects.projects_v1_boards %}, see [AUTOTITLE](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards). For information about the project card APIs, see [AUTOTITLE](/graphql/reference/projects-classic#object-projectcard) in the GraphQL API documentation or [AUTOTITLE](/rest/projects-classic/cards).
466-
467-
For example, you can run a workflow when a project card has been `created` or `deleted`.
468-
469-
```yaml
470-
on:
471-
project_card:
472-
types: [created, deleted]
473-
```
474-
475-
## `project_column`
476-
477-
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |
478-
| --------------------- | -------------- | ------------ | -------------|
479-
| [`project_column`](/webhooks-and-events/webhooks/webhook-events-and-payloads#project_column) | - `created`<br/>- `updated`<br/>- `moved`<br/>- `deleted` | Last commit on default branch | Default branch |
480-
481-
> [!NOTE]
482-
> * {% data reusables.developer-site.multiple_activity_types %} For information about each activity type, see [AUTOTITLE](/webhooks-and-events/webhooks/webhook-events-and-payloads#project_column). {% data reusables.developer-site.limit_workflow_to_activity_types %}
483-
> * {% data reusables.actions.branch-requirement %}
484-
> * This event only occurs for projects owned by the workflow's repository, not for organization-owned or user-owned projects or for projects owned by another repository.
485-
486-
Runs your workflow when a column on a {% data variables.projects.projects_v1_board %} is created or modified. For activity related to {% data variables.projects.projects_v1_boards %} or cards in a {% data variables.projects.projects_v1_board %}, use the [`project`](#project) or [`project_card`](#project_card) event instead. For more information about {% data variables.projects.projects_v1_boards %}, see [AUTOTITLE](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards). For information about the project column APIs, see [AUTOTITLE](/graphql/reference/projects-classic#object-projectcolumn) in the GraphQL API documentation or [AUTOTITLE](/rest/projects-classic#columns).
487-
488-
For example, you can run a workflow when a project column has been `created` or `deleted`.
489-
490-
```yaml
491-
on:
492-
project_column:
493-
types: [created, deleted]
494-
```
495-
496-
{% endif %}
497-
498431
## `public`
499432

500433
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |
@@ -845,7 +778,7 @@ jobs:
845778
> * The webhook payload available to GitHub Actions does not include the `added`, `removed`, and `modified` attributes in the `commit` object. You can retrieve the full commit object using the API. For information, see [AUTOTITLE](/graphql/reference/commits#object-commit) in the GraphQL API documentation or [AUTOTITLE](/rest/commits#get-a-commit).
846779
> * Events will not be created if more than 5,000 branches are pushed at once. Events will not be created for tags when more than three tags are pushed at once.
847780

848-
Runs your workflow when you push a commit or tag, or when you create a repository from a template. This includes workflows that are not merged into the default branch. For more information, see [AUTOTITLE](/actions/reference/workflows-and-actions/events-that-trigger-workflows#running-your-workflow-only-when-a-push-to-specific-branches-occurs).
781+
Runs your workflow when you push a commit or tag, or when you create a repository from a template. This includes workflows that are not merged into the default branch. For more information, see [AUTOTITLE](/actions/reference/workflows-and-actions/events-that-trigger-workflows#running-your-workflow-only-when-a-push-to-specific-branches-occurs).
849782

850783
For example, you can run a workflow when the `push` event occurs.
851784

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

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ $ ghe-config app.github.rate-limiting-exempt-users "hubot github-actions[bot]"
134134

135135
### ghe-config-apply
136136

137-
This utility applies {% data variables.enterprise.management_console %} settings, reloads system services, prepares a storage device, reloads application services, and runs any pending database migrations. It is equivalent to clicking **Save settings** in the {% data variables.enterprise.management_console %}'s web UI or to sending a POST request to [the `/manage/v1/config/apply` endpoint](/rest/enterprise-admin/manage-ghes#trigger-a-ghe-config-apply-run). Starting in version 3.16, this utility applies configuration changes conditionally to relevant settings. You can force it to run unconditionally by using `-f` flag.
137+
This utility applies {% data variables.enterprise.management_console %} settings, reloads system services, prepares a storage device, reloads application services, and runs any pending database migrations. It is equivalent to clicking **Save settings** in the {% data variables.enterprise.management_console %}'s web UI or to sending a POST request to [the `/manage/v1/config/apply` endpoint](/rest/enterprise-admin/manage-ghes#trigger-a-ghe-config-apply-run). Starting in version 3.16, this utility applies configuration changes conditionally to relevant settings. You can force it to run unconditionally by using `-f` flag.
138138

139139
```shell
140140
ghe-config-apply
@@ -375,13 +375,9 @@ ghe-reactivate-admin-login
375375

376376
### ghe-saml-mapping-csv
377377

378-
{% ifversion scim-for-ghes-ga %}
379-
380378
> [!NOTE]
381379
> This utility does not work with configurations that use SAML with SCIM provisioning. For the SCIM version of this tool, please refer to [`ghe-scim-identities-csv` utility](#ghe-scim-identities-csv).
382380
383-
{% endif %}
384-
385381
This utility allows administrators to output or update the SAML `NameID` mappings for users on an instance. The utility can output a CSV file that lists all existing mappings. You can also update mappings for users on your instance by editing the resulting file, then using the utility to assign new mappings from the file.
386382

387383
To output a CSV file containing a list of all user SAML `NameID` mappings on the instance, run the following command.
@@ -406,8 +402,6 @@ To update SAML mappings on the instance with new values from the file, run the f
406402
ghe-saml-mapping-csv -u -f /PATH/TO/FILE
407403
```
408404

409-
{% ifversion scim-for-ghes-ga %}
410-
411405
### ghe-scim-identities-csv
412406

413407
> [!NOTE]
@@ -429,8 +423,6 @@ ghe-scim-identities-csv -f /PATH/TO/FILE
429423

430424
We recommend writing to a file in `/data/user/tmp`.
431425

432-
{% endif %}
433-
434426
### ghe-service-list
435427

436428
This utility lists all of the services that have been started or stopped (are running or waiting) on your appliance.

content/admin/backing-up-and-restoring-your-instance/backup-service-for-github-enterprise-server/about-the-backup-service-for-github-enterprise-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: About the backup service for GitHub Enterprise Server
33
shortTitle: About the backup service
44
intro: Learn what the built-in backup service offers and how it differs from a High Availability replica.
55
versions:
6-
ghes: '>=3.17'
6+
ghes: '*'
77
contentType: concepts
88
category:
99
- Back up and upgrade your instance

content/admin/backing-up-and-restoring-your-instance/backup-service-for-github-enterprise-server/backup-service-settings-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Backup service settings reference
33
shortTitle: Backup settings
44
intro: Reference for all configurable options available in the Backup Service section of the {% data variables.enterprise.management_console %}.
55
versions:
6-
ghes: '>= 3.17'
6+
ghes: '*'
77
contentType: reference
88
category:
99
- Back up and upgrade your instance

0 commit comments

Comments
 (0)