Skip to content

Commit 4b544ea

Browse files
authored
Merge pull request github#30377 from github/repo-sync
repo sync
2 parents 1339fa8 + 449dfbc commit 4b544ea

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

content/authentication/managing-commit-signature-verification/generating-a-new-gpg-key.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ topics:
5252
{% data reusables.gpg.copy-gpg-key-id %}
5353
10. Paste the text below, substituting in the GPG key ID you'd like to use. In this example, the GPG key ID is `3AA5C34371567BD2`:
5454
```shell{:copy}
55-
$ gpg --armor --export <em>3AA5C34371567BD2</em>
55+
$ gpg --armor --export 3AA5C34371567BD2
5656
# Prints the GPG key ID, in ASCII armor format
5757
```
5858
11. Copy your GPG key, beginning with `-----BEGIN PGP PUBLIC KEY BLOCK-----` and ending with `-----END PGP PUBLIC KEY BLOCK-----`.

content/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Enabling or disabling GitHub Discussions for an organization
3-
intro: 'You can use {% data variables.product.prodname_discussions %} in a organization as a place for your organization to have conversations that aren''t specific to a single repository within your organization.'
3+
intro: 'You can use {% data variables.product.prodname_discussions %} in an organization as a place for your organization to have conversations that aren''t specific to a single repository within your organization.'
44
permissions: 'Organization owners can enable {% data variables.product.prodname_discussions %} for their organization.'
55
versions:
66
feature: discussions

content/rest/guides/getting-started-with-the-checks-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ A check run is an individual test that is part of a check suite. Each run includ
4141

4242
![Check runs workflow](/assets/images/check_runs.png)
4343

44-
If a check run is in a incomplete state for more than 14 days, then the check run's `conclusion` becomes `stale` and appears on {% data variables.product.prodname_dotcom %} as stale with {% octicon "issue-reopened" aria-label="The issue-reopened icon" %}. Only {% data variables.product.prodname_dotcom %} can mark check runs as `stale`. For more information about possible conclusions of a check run, see the [`conclusion` parameter](/rest/reference/checks#create-a-check-run--parameters).
44+
If a check run is in an incomplete state for more than 14 days, then the check run's `conclusion` becomes `stale` and appears on {% data variables.product.prodname_dotcom %} as stale with {% octicon "issue-reopened" aria-label="The issue-reopened icon" %}. Only {% data variables.product.prodname_dotcom %} can mark check runs as `stale`. For more information about possible conclusions of a check run, see the [`conclusion` parameter](/rest/reference/checks#create-a-check-run--parameters).
4545

4646
As soon as you receive the [`check_suite`](/webhooks/event-payloads/#check_suite) webhook, you can create the check run, even if the check is not complete. You can update the `status` of the check run as it completes with the values `queued`, `in_progress`, or `completed`, and you can update the `output` as more details become available. A check run can contain timestamps, a link to more details on your external site, detailed annotations for specific lines of code, and information about the analysis performed.
4747

content/rest/teams/external-groups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To use this API, the authenticated user must be a team maintainer or an owner of
1919

2020
**Notes:**
2121

22-
- The external groups API is only available for organizations that are part of a enterprise using {% data variables.product.prodname_emus %}. For more information, see "[About Enterprise Managed Users](/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)."
22+
- The external groups API is only available for organizations that are part of an enterprise using {% data variables.product.prodname_emus %}. For more information, see "[About Enterprise Managed Users](/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)."
2323
- If your organization uses team synchronization, you can use the Team Synchronization API. For more information, see "[Team synchronization API](#team-synchronization)."
2424

2525
{% endnote %}

content/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ shortTitle: Sponsor a contributor
2525

2626
You can sponsor an account on behalf of your personal account to invest in projects that you personally benefit from. You can sponsor an account on behalf of your organization for many reasons.
2727
- Sustaining specific libraries that your organization's work depends on
28-
- Investing in the ecosystem you rely on as a organization (such as blockchain)
28+
- Investing in the ecosystem you rely on as an organization (such as blockchain)
2929
- Developing brand awareness as an organization that values open source
3030
- Thanking open source developers for building libraries that complement the product your organization offers
3131

data/reusables/enterprise_site_admin_settings/pgp-key-env-variable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1. Define the key as a environment variable for {% data variables.product.product_name %}, replacing `<YOUR-KEY-ID>` with the GPG key ID.
1+
1. Define the key as an environment variable for {% data variables.product.product_name %}, replacing `<YOUR-KEY-ID>` with the GPG key ID.
22

33
```bash{:copy}
44
ghe-config "secrets.gpgverify.web-signing-key" "$(gpg --export-secret-keys -a <YOUR-KEY-ID> | awk '{printf "%s\\n", $0}')"

0 commit comments

Comments
 (0)