Skip to content
This repository was archived by the owner on Dec 30, 2022. It is now read-only.

Commit 52a92a3

Browse files
authored
Enterprise bug fixes: week of Jan 31, 2022 (#25043)
1 parent 945c4d6 commit 52a92a3

File tree

17 files changed

+41
-24
lines changed

17 files changed

+41
-24
lines changed

content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ redirect_from:
77
- /articles/inviting-collaborators-to-a-personal-repository
88
- /github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository
99
- /github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository
10-
product: '{% ifversion fpt %}{% data reusables.gated-features.user-repo-collaborators %}{% endif %}'
10+
product: '{% data reusables.gated-features.user-repo-collaborators %}'
1111
versions:
1212
fpt: '*'
1313
ghes: '*'

content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/removing-yourself-from-a-collaborators-repository.md

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ redirect_from:
99
- /articles/removing-yourself-from-a-collaborators-repository
1010
- /github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository
1111
- /github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/removing-yourself-from-a-collaborators-repository
12-
product: '{% data reusables.gated-features.user-repo-collaborators %}'
1312
versions:
1413
fpt: '*'
1514
ghes: '*'

content/admin/configuration/configuring-network-settings/configuring-tls.md

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ You can generate a certificate signing request (CSR) for your instance using the
3737

3838
## Uploading a custom TLS certificate
3939

40+
{% data reusables.enterprise_site_admin_settings.tls-downtime %}
41+
4042
{% data reusables.enterprise_site_admin_settings.access-settings %}
4143
{% data reusables.enterprise_site_admin_settings.management-console %}
4244
{% data reusables.enterprise_management_console.privacy %}
@@ -69,6 +71,8 @@ You can also use the `ghe-ssl-acme` command line utility on {% data variables.pr
6971

7072
{% data reusables.enterprise_installation.lets-encrypt-prerequisites %}
7173

74+
{% data reusables.enterprise_site_admin_settings.tls-downtime %}
75+
7276
{% data reusables.enterprise_site_admin_settings.access-settings %}
7377
{% data reusables.enterprise_site_admin_settings.management-console %}
7478
{% data reusables.enterprise_management_console.privacy %}

content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ settings to allow incoming emails](#configuring-dns-and-firewall-settings-to-all
8888
4. If the test email fails, [troubleshoot your email settings](#troubleshooting-email-delivery).
8989
5. When the test email succeeds, at the bottom of the page, click **Save settings**.
9090
![Save settings button](/assets/images/enterprise/management-console/save-settings.png)
91-
6. Wait for the configuration run to complete.
92-
![Configuring your instance](/assets/images/enterprise/management-console/configuration-run.png)
91+
{% data reusables.enterprise_site_admin_settings.wait-for-configuration-run %}
9392

9493
## Configuring DNS and firewall settings to allow incoming emails
9594

content/admin/identity-and-access-management/managing-iam-for-your-enterprise/switching-your-saml-configuration-from-an-organization-to-an-enterprise-account.md

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ redirect_from:
1515
- /admin/authentication/managing-identity-and-access-for-your-enterprise/switching-your-saml-configuration-from-an-organization-to-an-enterprise-account
1616
---
1717

18-
{% data reusables.enterprise-accounts.emu-saml-note %}
19-
2018
## About SAML single sign-on for enterprise accounts
2119

2220
{% data reusables.saml.dotcom-saml-explanation %} {% data reusables.saml.about-saml-enterprise-accounts %}

content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md

+3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ The `$GITHUB_VIA` variable is available in the pre-receive hook environment when
9090
| <pre>git refs delete api</pre> | Deletion of a ref via the API | "[Git database](/rest/reference/git#delete-a-reference)" in the REST API documentation |
9191
| <pre>git refs update api</pre> | Update of a ref via the API | "[Git database](/rest/reference/git#update-a-reference)" in the REST API documentation |
9292
| <pre>git repo contents api</pre> | Change to a file's contents via the API | "[Create or update file contents](/rest/reference/repos#create-or-update-file-contents)" in the REST API documentation |
93+
{%- ifversion ghes > 3.0 %}
94+
| `merge ` | Merge of a pull request using auto-merge | "[Automatically merging a pull request](/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request)" |
95+
{%- endif %}
9396
| <pre>merge base into head</pre> | Update of the topic branch from the base branch when the base branch requires strict status checks (via **Update branch** in a pull request, for example) | "[About protected branches](/github/administering-a-repository/about-protected-branches#require-status-checks-before-merging)" |
9497
| <pre>pull request branch delete button</pre> | Deletion of a topic branch from a pull request in the web interface | "[Deleting and restoring branches in a pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#deleting-a-branch-used-for-a-pull-request)" |
9598
| <pre>pull request branch undo button</pre> | Restoration of a topic branch from a pull request in the web interface | "[Deleting and restoring branches in a pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#restoring-a-deleted-branch)" |

content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/managing-code-scanning-alerts-for-your-repository.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ You can search the list of alerts. This is useful if there is a large number of
126126

127127
{% endif %}
128128

129-
{% ifversion fpt or ghes > 3.3 or ghae-issue-5036 %}
129+
{% if code-scanning-task-lists %}
130130
## Tracking {% data variables.product.prodname_code_scanning %} alerts in issues
131131

132132
{% data reusables.code-scanning.beta-alert-tracking-in-issues %}

content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/tracking-code-scanning-alerts-in-issues-using-task-lists.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ intro: You can add code scanning alerts to issues using task lists. This makes i
55
product: '{% data reusables.gated-features.code-scanning %}'
66
permissions: 'If you have write permission to a repository you can track {% data variables.product.prodname_code_scanning %} alerts in issues using task lists.'
77
versions:
8-
fpt: '*'
9-
ghes: '> 3.3'
10-
ghae: issue-5036
8+
feature: 'code-scanning-task-lists'
119
type: how_to
1210
topics:
1311
- Advanced Security

content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,9 @@ shortTitle: Enterprise Cloud trial
2525

2626
You can use organizations for free with {% data variables.product.prodname_free_team %}, which includes limited features. For additional features, such as SAML single sign-on (SSO), access control for {% data variables.product.prodname_pages %}, and included {% data variables.product.prodname_actions %} minutes, you can upgrade to {% data variables.product.prodname_ghe_cloud %}. For a detailed list of the features available with {% data variables.product.prodname_ghe_cloud %}, see our [Pricing](https://github.com/pricing) page.
2727

28-
{% data reusables.saml.saml-accounts %}
29-
30-
For more information, see "[About identity and access management with SAML single sign-on](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on){% ifversion not ghec %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}
31-
32-
{% data reusables.enterprise-accounts.emu-short-summary %}
28+
You can set up a trial of {% data variables.product.prodname_ghe_cloud %} to evaluate these additional features on a new or existing organization account.
3329

34-
{% data variables.product.prodname_emus %} is not part of the free trial of {% data variables.product.prodname_ghe_cloud %}. If you're interested in {% data variables.product.prodname_emus %}, please contact [{% data variables.product.prodname_dotcom %}'s Sales team](https://enterprise.github.com/contact).
30+
Trials are also available for {% data variables.product.prodname_ghe_server %}. For more information, see "[Setting up a trial of {% data variables.product.prodname_ghe_server %}](/articles/setting-up-a-trial-of-github-enterprise-server)."
3531

3632
{% data reusables.products.which-product-to-use %}
3733

@@ -41,7 +37,11 @@ You can set up a 30-day trial to evaluate {% data variables.product.prodname_ghe
4137

4238
Your trial includes 50 seats. If you need more seats to evaluate {% data variables.product.prodname_ghe_cloud %}, contact {% data variables.contact.contact_enterprise_sales %}. At the end of the trial, you can choose a different number of seats.
4339

44-
Trials are also available for {% data variables.product.prodname_ghe_server %}. For more information, see "[Setting up a trial of {% data variables.product.prodname_ghe_server %}](/articles/setting-up-a-trial-of-github-enterprise-server)."
40+
{% data reusables.saml.saml-accounts %}
41+
42+
For more information, see "[About identity and access management with SAML single sign-on](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on){% ifversion not ghec %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}
43+
44+
{% data variables.product.prodname_emus %} is not part of the free trial of {% data variables.product.prodname_ghe_cloud %}. If you're interested in {% data variables.product.prodname_emus %}, please contact [{% data variables.product.prodname_dotcom %}'s Sales team](https://enterprise.github.com/contact).
4545

4646
## Setting up your trial of {% data variables.product.prodname_ghe_cloud %}
4747

@@ -64,11 +64,13 @@ After setting up your trial, you can explore {% data variables.product.prodname_
6464

6565
## Finishing your trial
6666

67-
You can buy {% data variables.product.prodname_enterprise %} or downgrade to {% data variables.product.prodname_team %} at any time during your trial.
67+
You can buy {% data variables.product.prodname_enterprise %} at any time during your trial. Purchasing {% data variables.product.prodname_enterprise %} ends your trial, removing the 50-seat maximum and initiating payment.
68+
69+
If you don't purchase {% data variables.product.prodname_enterprise %}, when the trial ends, your organization will be downgraded. If you used an existing organization for the trial, the organization will be downgraded to the product you were using before the trial. If you created a new organization for the trial, the organization will be downgraded to {% data variables.product.prodname_free_team %}.
6870

69-
If you don't purchase {% data variables.product.prodname_enterprise %} or {% data variables.product.prodname_team %} before your trial ends, your organization will be downgraded to {% data variables.product.prodname_free_team %} and lose access to any advanced tooling and features that are only included with paid products, including {% data variables.product.prodname_pages %} sites published from those private repositories. If you don't plan to upgrade, to avoid losing access to advanced features, make the repositories public before your trial ends. For more information, see "[Setting repository visibility](/articles/setting-repository-visibility)."
71+
Your organization will lose access to any functionality that is not included in the new product, such as advanced features like {% data variables.product.prodname_pages %} for private repositories. If you don't plan to upgrade, to avoid losing access to advanced features, consider making affected repositories public before your trial ends. For more information, see "[Setting repository visibility](/articles/setting-repository-visibility)."
7072

71-
Downgrading to {% data variables.product.prodname_free_team %} for organizations also disables any SAML settings configured during the trial period. Once you purchase {% data variables.product.prodname_enterprise %} or {% data variables.product.prodname_team %}, your SAML settings will be enabled again for users in your organization to authenticate.
73+
Downgrading also disables any SAML settings configured during the trial period. If you later purchase {% data variables.product.prodname_enterprise %}, your SAML settings will be enabled again for users in your organization to authenticate.
7274

7375
{% data reusables.profile.access_org %}
7476
{% data reusables.profile.org_settings %}

content/issues/tracking-your-work-with-issues/about-task-lists.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@ Any issues that are referenced in a task list specify that they are tracked by t
7676

7777
## Further reading
7878

79-
* "[Basic writing and formatting syntax](/articles/basic-writing-and-formatting-syntax)"{% ifversion fpt or ghes > 3.3 or ghae-issue-5036 %}
79+
* "[Basic writing and formatting syntax](/articles/basic-writing-and-formatting-syntax)"{% if code-scanning-task-lists %}
8080
* "[Tracking {% data variables.product.prodname_code_scanning %} alerts in issues using task lists](/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/tracking-code-scanning-alerts-in-issues-using-task-lists)"{% endif %}

content/issues/tracking-your-work-with-issues/creating-an-issue.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Query parameter | Example
153153
`projects` | `https://github.com/octo-org/octo-repo/issues/new?title=Bug+fix&projects=octo-org/1` creates an issue with the title "Bug fix" and adds it to the organization's project board 1.
154154
`template` | `https://github.com/octo-org/octo-repo/issues/new?template=issue_template.md` creates an issue with a template in the issue body. The `template` query parameter works with templates stored in an `ISSUE_TEMPLATE` subdirectory within the root, `docs/` or `.github/` directory in a repository. For more information, see "[Using templates to encourage useful issues and pull requests](/communities/using-templates-to-encourage-useful-issues-and-pull-requests)."
155155

156-
{% ifversion fpt or ghes > 3.3 or ghae-issue-5036 %}
156+
{% if code-scanning-task-lists %}
157157
## Creating an issue from a {% data variables.product.prodname_code_scanning %} alert
158158

159159
{% data reusables.code-scanning.beta-alert-tracking-in-issues %}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
versions:
2+
fpt: '*'
3+
ghec: '*'
4+
ghae: 'issue-5036'

data/reusables/code-scanning/beta-alert-tracking-in-issues.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% ifversion fpt or ghes > 3.3 or ghae-issue-5036 %}
1+
{% if code-scanning-task-lists %}
22

33
{% note %}
44

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
1. Under the left sidebar, click **Save settings**.
22
![The Save settings button in the {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/save-settings.png)
3-
1. Wait for the configuration run to complete.
3+
{% data reusables.enterprise_site_admin_settings.wait-for-configuration-run %}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{% warning %}
2+
3+
**Warning:** Configuring TLS causes a small amount of downtime for {% data variables.product.product_location %}.
4+
5+
{% endwarning %}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
1. Wait for the configuration run to complete.
2+
3+
![Configuring your instance](/assets/images/enterprise/management-console/configuration-run.png)
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
{% ifversion fpt %}
12
If you're using {% data variables.product.prodname_free_user %}, you can add unlimited collaborators on public and private repositories.
3+
{% endif %}

0 commit comments

Comments
 (0)