From 9f0fbebab0619dce668828e9d3c98d4c124d5db7 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:26:53 -0400 Subject: [PATCH 01/26] typo: Multline -> Multiline --- .../actions/reference/workflow-commands-for-github-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/reference/workflow-commands-for-github-actions.md b/content/actions/reference/workflow-commands-for-github-actions.md index 4f4e819b652d..7c20f9df3a2b 100644 --- a/content/actions/reference/workflow-commands-for-github-actions.md +++ b/content/actions/reference/workflow-commands-for-github-actions.md @@ -274,7 +274,7 @@ echo "action_state=yellow" >> $GITHUB_ENV Running `$action_state` in a future step will now return `yellow` -#### Multline strings +#### Multiline strings For multiline strings, you may use a delimiter with the following syntax. From c6f0057c49c80ca9a201fa71dc84b6587d184913 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:32:14 -0400 Subject: [PATCH 02/26] typo: Deply -> Deploy --- .../migrating-from-gitlab-cicd-to-github-actions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions.md b/content/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions.md index 873144e8fe04..618503642e5d 100644 --- a/content/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions.md +++ b/content/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions.md @@ -180,7 +180,7 @@ GitLab CI/CD deploy_prod: stage: deploy script: - - echo "Deply to production server" + - echo "Deploy to production server" rules: - if: '$CI_COMMIT_BRANCH == "master"' ``` @@ -194,7 +194,7 @@ jobs: if: contains( github.ref, 'master') runs-on: ubuntu-latest steps: - - run: echo "Deply to production server" + - run: echo "Deploy to production server" ``` {% endraw %} From 0401941bd93aff7abcd0b113470dc267f8393ada Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:35:46 -0400 Subject: [PATCH 03/26] typo: analagous -> analogous --- .../packages/configuring-third-party-storage-for-packages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/admin/packages/configuring-third-party-storage-for-packages.md b/content/admin/packages/configuring-third-party-storage-for-packages.md index 5c0f19db55d2..8524547c00d7 100644 --- a/content/admin/packages/configuring-third-party-storage-for-packages.md +++ b/content/admin/packages/configuring-third-party-storage-for-packages.md @@ -13,7 +13,7 @@ versions: {% data variables.product.prodname_registry %} on {% data variables.product.prodname_ghe_server %} uses external blob storage to store your packages. The amount of storage required depends on your usage of {% data variables.product.prodname_registry %}. -At this time, {% data variables.product.prodname_registry %} supports blob storage with Amazon Web Services (AWS) S3. MinIO is also supported, but configuration is not currently implemented in the {% data variables.product.product_name %} interface. You can use MinIO for storage by following the instructions for AWS S3, entering the analagous information for your MinIO configuration. +At this time, {% data variables.product.prodname_registry %} supports blob storage with Amazon Web Services (AWS) S3. MinIO is also supported, but configuration is not currently implemented in the {% data variables.product.product_name %} interface. You can use MinIO for storage by following the instructions for AWS S3, entering the analogous information for your MinIO configuration. For the best experience, we recommend using a dedicated bucket for {% data variables.product.prodname_registry %}, separate from the bucket you use for {% data variables.product.prodname_actions %} storage. From 475da004d9161255b22f4d08134d960542507a46 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:36:50 -0400 Subject: [PATCH 04/26] typo: lifecyle -> lifecycle --- content/admin/authentication/using-saml.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/admin/authentication/using-saml.md b/content/admin/authentication/using-saml.md index 3288ec95677d..f6fe021b1bf8 100644 --- a/content/admin/authentication/using-saml.md +++ b/content/admin/authentication/using-saml.md @@ -29,7 +29,7 @@ Each {% data variables.product.prodname_ghe_server %} username is determined by The `NameID` element is required even if other attributes are present. -A mapping is created between the `NameID` and the {% data variables.product.prodname_ghe_server %} username, so the `NameID` should be persistent, unique, and not subject to change for the lifecyle of the user. +A mapping is created between the `NameID` and the {% data variables.product.prodname_ghe_server %} username, so the `NameID` should be persistent, unique, and not subject to change for the lifecycle of the user. {% note %} From 4d044bad68d56bad165994fa0f7058a22965080a Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:39:36 -0400 Subject: [PATCH 05/26] typo: intallation -> installation --- .../developers/apps/creating-ci-tests-with-the-checks-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/developers/apps/creating-ci-tests-with-the-checks-api.md b/content/developers/apps/creating-ci-tests-with-the-checks-api.md index 23fe0306b503..dbe3fb274d86 100644 --- a/content/developers/apps/creating-ci-tests-with-the-checks-api.md +++ b/content/developers/apps/creating-ci-tests-with-the-checks-api.md @@ -836,7 +836,7 @@ Here are a few common problems and some suggested solutions. If you run into any * **Q:** My app isn't pushing code to GitHub. I don't see the fixes that RuboCop automatically makes! - **A:** Make sure you have **Read & write** permissions for "Repository contents," and that you are cloning the repository with your intallation token. See [Step 2.2. Cloning the repository](#step-22-cloning-the-repository) for details. + **A:** Make sure you have **Read & write** permissions for "Repository contents," and that you are cloning the repository with your installation token. See [Step 2.2. Cloning the repository](#step-22-cloning-the-repository) for details. * **Q:** I see an error in the `template_server.rb` debug output related to cloning my repository. From f5dc77432b3d50d7a21fb453b5230bc01a33f00e Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:41:52 -0400 Subject: [PATCH 06/26] typo: potection -> protection --- .../apps/identifying-and-authorizing-users-for-github-apps.md | 2 +- content/rest/reference/permissions-required-for-github-apps.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/developers/apps/identifying-and-authorizing-users-for-github-apps.md b/content/developers/apps/identifying-and-authorizing-users-for-github-apps.md index 39ade7dd2417..60a7f9be391f 100644 --- a/content/developers/apps/identifying-and-authorizing-users-for-github-apps.md +++ b/content/developers/apps/identifying-and-authorizing-users-for-github-apps.md @@ -662,7 +662,7 @@ While most of your API interaction should occur using your server-to-server inst * [Create commit signature protection](/v3/repos/branches/#create-commit-signature-protection) * [Delete commit signature protection](/v3/repos/branches/#delete-commit-signature-protection) * [Get status checks protection](/v3/repos/branches/#get-status-checks-protection) -* [Update status check potection](/v3/repos/branches/#update-status-check-potection) +* [Update status check protection](/v3/repos/branches/#update-status-check-protection) * [Remove status check protection](/v3/repos/branches/#remove-status-check-protection) * [Get all status check contexts](/v3/repos/branches/#get-all-status-check-contexts) * [Add status check contexts](/v3/repos/branches/#add-status-check-contexts) diff --git a/content/rest/reference/permissions-required-for-github-apps.md b/content/rest/reference/permissions-required-for-github-apps.md index 0238c195e36b..6e0757027300 100644 --- a/content/rest/reference/permissions-required-for-github-apps.md +++ b/content/rest/reference/permissions-required-for-github-apps.md @@ -186,7 +186,7 @@ _Branches_ - [`POST /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/v3/repos/branches/#create-commit-signature-protection) (:write) - [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/v3/repos/branches/#delete-commit-signature-protection) (:write) - [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/v3/repos/branches/#get-status-checks-protection) (:read) -- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/v3/repos/branches/#update-status-check-potection) (:write) +- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/v3/repos/branches/#update-status-check-protection) (:write) - [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/v3/repos/branches/#remove-status-check-protection) (:write) - [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/v3/repos/branches/#get-all-status-check-contexts) (:read) - [`POST /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/v3/repos/branches/#add-status-check-contexts) (:write) From 0b25bd1a641f03240f0c92f53f487a21778e372e Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:42:58 -0400 Subject: [PATCH 07/26] typo: altererd -> altered --- ...ng-up-your-development-environment-to-create-a-github-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/developers/apps/setting-up-your-development-environment-to-create-a-github-app.md b/content/developers/apps/setting-up-your-development-environment-to-create-a-github-app.md index 45e7c4c544a8..56485e1550f0 100644 --- a/content/developers/apps/setting-up-your-development-environment-to-create-a-github-app.md +++ b/content/developers/apps/setting-up-your-development-environment-to-create-a-github-app.md @@ -262,7 +262,7 @@ Before you can use the Octokit.rb library to make API calls, you'll need to init # Instantiate an Octokit client authenticated as a GitHub App. # GitHub App authentication requires that you construct a # JWT (https://jwt.io/introduction/) signed with the app's private key, -# so GitHub can be sure that it came from the app an not altererd by +# so GitHub can be sure that it came from the app an not altered by # a malicious third party. def authenticate_app payload = { From 13d0fb8630ada57a0a9b5af537ca6278ee91825c Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:43:29 -0400 Subject: [PATCH 08/26] typo: endoints -> endpoints --- .../rest-endpoints-for-the-github-marketplace-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/developers/github-marketplace/rest-endpoints-for-the-github-marketplace-api.md b/content/developers/github-marketplace/rest-endpoints-for-the-github-marketplace-api.md index ffbc4c69fc03..5ad1d2f177c6 100644 --- a/content/developers/github-marketplace/rest-endpoints-for-the-github-marketplace-api.md +++ b/content/developers/github-marketplace/rest-endpoints-for-the-github-marketplace-api.md @@ -1,6 +1,6 @@ --- title: REST endpoints for the GitHub Marketplace API -intro: 'To help manage your app on {% data variables.product.prodname_marketplace %}, use these {% data variables.product.prodname_marketplace %} API endoints.' +intro: 'To help manage your app on {% data variables.product.prodname_marketplace %}, use these {% data variables.product.prodname_marketplace %} API endpoints.' redirect_from: - /apps/marketplace/github-marketplace-api-endpoints/ - /apps/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-rest-api-endpoints/ From ba27f5ca859111ac2e6b71360df9aa0662161e16 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:52:42 -0400 Subject: [PATCH 09/26] typo: applicationss -> applications --- .../connecting-with-third-party-applications.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/github/authenticating-to-github/connecting-with-third-party-applications.md b/content/github/authenticating-to-github/connecting-with-third-party-applications.md index 7e12bae6e39a..e792daf5ec5f 100644 --- a/content/github/authenticating-to-github/connecting-with-third-party-applications.md +++ b/content/github/authenticating-to-github/connecting-with-third-party-applications.md @@ -55,10 +55,10 @@ There are several types of data that applications can request. | Type of data | Description | | --- | --- | | Commit status | You can grant access for a third-party application to report your commit status. Commit status access allows applications to determine if a build is a successful against a specific commit. Applications won't have access to your code, but they can read and write status information against a specific commit. | -| Deployments | Deployment status access allows applicationss to determine if a deployment is successful against a specific commit for public and private repositories. Applicationss won't have access to your code. | +| Deployments | Deployment status access allows applications to determine if a deployment is successful against a specific commit for public and private repositories. Applications won't have access to your code. | | Gists | [Gist](https://gist.github.com) access allows applications to read or write to both your public and secret Gists. | | Hooks | [Webhooks](/webhooks) access allows applications to read or write hook configurations on repositories you manage. | -| Notifications | Notification access allows applicationss to read your {% data variables.product.product_name %} notifications, such as comments on issues and pull requests. However, applications remain unable to access anything in your repositories. | +| Notifications | Notification access allows applications to read your {% data variables.product.product_name %} notifications, such as comments on issues and pull requests. However, applications remain unable to access anything in your repositories. | | Organizations and teams | Organization and teams access allows apps to access and manage organization and team membership. | | Personal user data | User data includes information found in your user profile, like your name, e-mail address, and location. | | Repositories | Repository information includes the names of contributors, the branches you've created, and the actual files within your repository. Applications can request access for either public or private repositories on a user-wide level. | From 12b75ce9a05aae5f4465ba693c8277154e0a563b Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:56:48 -0400 Subject: [PATCH 10/26] typo: alogrithms -> algorithms --- .../managing-code-review-assignment-for-your-team.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team.md b/content/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team.md index 47ed076cb239..750351b231e5 100644 --- a/content/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team.md +++ b/content/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team.md @@ -18,7 +18,7 @@ When code owners are automatically requested for review, the team is still remov ### Routing algorithms -Code review assignments automatically choose and assign reviewers based on one of two possible alogrithms. +Code review assignments automatically choose and assign reviewers based on one of two possible algorithms. The round robin algorithm chooses reviewers based on who's received the least recent review request, focusing on alternating between all members of the team regardless of the number of outstanding reviews they currently have. From a0ee3ff296c8cb4d77f868702bb877e529a0a096 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 20:58:31 -0400 Subject: [PATCH 11/26] typo: licences -> licenses --- .../viewing-insights-for-your-organization.md | 2 +- contributing/content-style-guide.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/github/setting-up-and-managing-organizations-and-teams/viewing-insights-for-your-organization.md b/content/github/setting-up-and-managing-organizations-and-teams/viewing-insights-for-your-organization.md index e0d30a7295e0..4e18a1b3a658 100644 --- a/content/github/setting-up-and-managing-organizations-and-teams/viewing-insights-for-your-organization.md +++ b/content/github/setting-up-and-managing-organizations-and-teams/viewing-insights-for-your-organization.md @@ -43,7 +43,7 @@ With dependency insights you can view vulnerabilities, licenses, and other impor 5. To view dependency insights for all your {% data variables.product.prodname_ghe_cloud %} organizations, click **My organizations**. ![My organizations button under dependencies tab](/assets/images/help/organizations/org-insights-dependencies-my-orgs-button.png) 6. You can click the results in the **Open security advisories** and **Licenses** graphs to filter by a vulnerability status, a license, or a combination of the two. - ![My organizations vulnerabilities and licences graphs](/assets/images/help/organizations/org-insights-dependencies-graphs.png) + ![My organizations vulnerabilities and licenses graphs](/assets/images/help/organizations/org-insights-dependencies-graphs.png) 7. You can click on {% octicon "package" aria-label="The package icon" %} **dependents** next to each vulnerability to see which dependents in your organization are using each library. ![My organizations vulnerable dependents](/assets/images/help/organizations/org-insights-dependencies-vulnerable-item.png) diff --git a/contributing/content-style-guide.md b/contributing/content-style-guide.md index d12c10894c78..c47c83382fa2 100644 --- a/contributing/content-style-guide.md +++ b/contributing/content-style-guide.md @@ -132,7 +132,7 @@ schedule: ## Headers Use H3 for headers, and H4 for subheaders. When referring to headers, surround the header name with quotation marks. -- **Use:** Under “User licences”, view your total licenses. +- **Use:** Under “User licenses”, view your total licenses. To orient readers and help them understand if the section is relevant to them, include introductory content after a header - don’t locate a subheader directly following a header. From a710ed92033db0f9ea96bced85ba0329c0399747 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 21:02:42 -0400 Subject: [PATCH 12/26] typo: varibles -> variables --- ...roubleshooting-jekyll-build-errors-for-github-pages-sites.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites.md b/content/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites.md index 62457004f932..3b2bb2212b1e 100644 --- a/content/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites.md +++ b/content/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites.md @@ -183,6 +183,6 @@ To troubleshoot, make sure all output tags in the file in the error message are This error means that your code contains an unrecognized Liquid tag. -To troubleshoot, make sure all Liquid tags in the file in the error message match Jekyll's default variables and there are no typos in the tag names. For a list of default varibles, see "[Variables](https://jekyllrb.com/docs/variables/)" in the Jekyll documentation. +To troubleshoot, make sure all Liquid tags in the file in the error message match Jekyll's default variables and there are no typos in the tag names. For a list of default variables, see "[Variables](https://jekyllrb.com/docs/variables/)" in the Jekyll documentation. Unsupported plugins are a common source of unrecognized tags. If you use an unsupported plugin in your site by generating your site locally and pushing your static files to {% data variables.product.product_name %}, make sure the plugin is not introducing tags that are not in Jekyll's default variables. For a list of supported plugins, see "[About {% data variables.product.prodname_pages %} and Jekyll](/articles/about-github-pages-and-jekyll#plugins)." From beb216d82b19ab11a7288737aed6d04ea5c68c93 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 21:05:41 -0400 Subject: [PATCH 13/26] typo: Contibutors -> Contributors --- .../managing-contributors-and-teams.md | 2 +- data/reusables/github-insights/contributors-tab.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/insights/installing-and-configuring-github-insights/managing-contributors-and-teams.md b/content/insights/installing-and-configuring-github-insights/managing-contributors-and-teams.md index 0fffd0737420..7c054d9bdbda 100644 --- a/content/insights/installing-and-configuring-github-insights/managing-contributors-and-teams.md +++ b/content/insights/installing-and-configuring-github-insights/managing-contributors-and-teams.md @@ -103,7 +103,7 @@ You can create and manage custom teams in {% data variables.product.prodname_ins {% data reusables.github-insights.teams-tab %} {% data reusables.github-insights.edit-team %} 3. Under "Contributors", use the drop-down menu and select a contributor. - ![Contibutors drop-down](/assets/images/help/insights/contributors-drop-down.png) + ![Contributors drop-down](/assets/images/help/insights/contributors-drop-down.png) 4. Click **Done**. #### Removing a contributor from a custom team diff --git a/data/reusables/github-insights/contributors-tab.md b/data/reusables/github-insights/contributors-tab.md index 4f00212343d6..7eafbff08cad 100644 --- a/data/reusables/github-insights/contributors-tab.md +++ b/data/reusables/github-insights/contributors-tab.md @@ -1,2 +1,2 @@ -1. Under **{% octicon "gear" aria-label="The gear icon" %} Settings**, click **Contibutors**. +1. Under **{% octicon "gear" aria-label="The gear icon" %} Settings**, click **Contributors**. ![Contributors tab](/assets/images/help/insights/contributors-tab.png) From 22ae7dd8a82a41e0a153b3829522d1c367b40ea3 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 21:10:54 -0400 Subject: [PATCH 14/26] typo: occurence -> occurrence --- contributing/troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing/troubleshooting.md b/contributing/troubleshooting.md index ffd3c30bb8d2..63ca37dcb1a2 100644 --- a/contributing/troubleshooting.md +++ b/contributing/troubleshooting.md @@ -83,7 +83,7 @@ Again, you should see more information about the error either in your browser or The `check internal links` test reports any broken links on the site, including images. The test reports the URL of the broken link, _not_ the file that includes that link, so you'll need to search the `docs` repository to find the file. -Broken images include `assets/images/` in the URL and are often caused by images being versioned for previous versions of GHES but not uploaded to the appropriate folder in S3. Search the `docs` repository for the file name (e.g., `assets/images/help/repository/security-tab.png`), then make sure the image is versioned correctly in each result. If the image is in a reusable, you'll also need to search for each occurence of that reusable. If the image is versioned correctly, upload the image to the appropriate folder(s) in S3. +Broken images include `assets/images/` in the URL and are often caused by images being versioned for previous versions of GHES but not uploaded to the appropriate folder in S3. Search the `docs` repository for the file name (e.g., `assets/images/help/repository/security-tab.png`), then make sure the image is versioned correctly in each result. If the image is in a reusable, you'll also need to search for each occurrence of that reusable. If the image is versioned correctly, upload the image to the appropriate folder(s) in S3. For broken links to articles on our site, find the file that contains the link by searching the `docs` repository for the file name (e.g., `incorporating-feedback-in-your-pull-request`). Try the following fixes: From 7ed4915b0e3b36452f8adc75c9e20e587c8f20f6 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 21:13:32 -0400 Subject: [PATCH 15/26] typo: occured -> occurred --- .../user-management/auditing-users-across-your-enterprise.md | 4 ++-- data/reusables/webhooks/repo_desc.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/admin/user-management/auditing-users-across-your-enterprise.md b/content/admin/user-management/auditing-users-across-your-enterprise.md index 685cb12eefc5..015fe8c7a20d 100644 --- a/content/admin/user-management/auditing-users-across-your-enterprise.md +++ b/content/admin/user-management/auditing-users-across-your-enterprise.md @@ -66,9 +66,9 @@ You can only use a {% data variables.product.product_name %} username, not an in The `org` qualifier limits actions to a specific organization. For example: -* `org:my-org` finds all events that occured for the `my-org` organization. +* `org:my-org` finds all events that occurred for the `my-org` organization. * `org:my-org action:team` finds all team events performed within the `my-org` organization. -* `-org:my-org` excludes all events that occured for the `my-org` organization. +* `-org:my-org` excludes all events that occurred for the `my-org` organization. #### Search based on the action performed diff --git a/data/reusables/webhooks/repo_desc.md b/data/reusables/webhooks/repo_desc.md index 27cc4f74c02c..df26fb3e7a4c 100644 --- a/data/reusables/webhooks/repo_desc.md +++ b/data/reusables/webhooks/repo_desc.md @@ -1 +1 @@ -`repository` | `object` | The [`repository`](/v3/repos/#get-a-repository) where the event occured. +`repository` | `object` | The [`repository`](/v3/repos/#get-a-repository) where the event occurred. From dbcd19818a937e50eca73ea9ac206b5c51b4faca Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 21:59:19 -0400 Subject: [PATCH 16/26] typo: subcriptions -> subscriptions --- data/reusables/marketplace/downgrade-marketplace-only.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/marketplace/downgrade-marketplace-only.md b/data/reusables/marketplace/downgrade-marketplace-only.md index fe5ba60c5c72..aac9c9829445 100644 --- a/data/reusables/marketplace/downgrade-marketplace-only.md +++ b/data/reusables/marketplace/downgrade-marketplace-only.md @@ -1 +1 @@ -Canceling an app or downgrading an app to free does not affect your [other paid subcriptions](/articles/about-billing-on-github) on {% data variables.product.prodname_dotcom %}. If you want to cease all of your paid subscriptions on {% data variables.product.prodname_dotcom %}, you must downgrade each paid subscription separately. +Canceling an app or downgrading an app to free does not affect your [other paid subscriptions](/articles/about-billing-on-github) on {% data variables.product.prodname_dotcom %}. If you want to cease all of your paid subscriptions on {% data variables.product.prodname_dotcom %}, you must downgrade each paid subscription separately. From 496a8fc9d199b993e9779cfebdb9b346ed700fbd Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 21:59:52 -0400 Subject: [PATCH 17/26] typo: positon -> position --- data/reusables/project-management/resync-automation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/project-management/resync-automation.md b/data/reusables/project-management/resync-automation.md index a5281a26ff0d..38b2f7a9e86a 100644 --- a/data/reusables/project-management/resync-automation.md +++ b/data/reusables/project-management/resync-automation.md @@ -1 +1 @@ -When you close a project board, any workflow automation configured for the project board will pause. If you reopen a project board, you have the option to sync automation, which updates the positon of the cards on the board according to the automation settings configured for the board. For more information, see "[Reopening a closed project board](/articles/reopening-a-closed-project-board)" or "[Closing a project board](/articles/closing-a-project-board)." +When you close a project board, any workflow automation configured for the project board will pause. If you reopen a project board, you have the option to sync automation, which updates the position of the cards on the board according to the automation settings configured for the board. For more information, see "[Reopening a closed project board](/articles/reopening-a-closed-project-board)" or "[Closing a project board](/articles/closing-a-project-board)." From 7911eb107a3f24508441feb7f47c4ce820665306 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 22:00:26 -0400 Subject: [PATCH 18/26] typo: insatllation -> installation --- data/reusables/webhooks/installation_properties.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/webhooks/installation_properties.md b/data/reusables/webhooks/installation_properties.md index 0f8ae4af38a6..8580d9fc2df3 100644 --- a/data/reusables/webhooks/installation_properties.md +++ b/data/reusables/webhooks/installation_properties.md @@ -1,4 +1,4 @@ Key | Type | Description ----|------|------------ `action` | `string` | The action that was performed. Can be one of:
  • `created` - Someone installs a {% data variables.product.prodname_github_app %}.
  • `deleted` - Someone uninstalls a {% data variables.product.prodname_github_app %}
  • {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.20" or currentVersion == "github-ae@latest" %}
  • `suspend` - Someone suspends a {% data variables.product.prodname_github_app %} installation.
  • `unsuspend` - Someone unsuspends a {% data variables.product.prodname_github_app %} installation.
  • {% endif %}
  • `new_permissions_accepted` - Someone accepts new permissions for a {% data variables.product.prodname_github_app %} installation. When a {% data variables.product.prodname_github_app %} owner requests new permissions, the person who installed the {% data variables.product.prodname_github_app %} must accept the new permissions request.
-`repositories` | `array` | An array of repository objects that the insatllation can access. +`repositories` | `array` | An array of repository objects that the installation can access. From 54f6e3e690ea8bec936446e87701c4cb1eae4835 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 22:00:46 -0400 Subject: [PATCH 19/26] typo: permissios -> permissions --- data/reusables/webhooks/member_webhook_properties.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/webhooks/member_webhook_properties.md b/data/reusables/webhooks/member_webhook_properties.md index e17e3348b609..7944d1e2863a 100644 --- a/data/reusables/webhooks/member_webhook_properties.md +++ b/data/reusables/webhooks/member_webhook_properties.md @@ -1,3 +1,3 @@ Key | Type | Description ----|------|------------- -`action`|`string` | The action that was performed. Can be one of:
  • `added` - A user accepts an invitation to a repository.
  • `removed` - A user is removed as a collaborator in a repository.
  • `edited` - A user's collaborator permissios have changed.
+`action`|`string` | The action that was performed. Can be one of:
  • `added` - A user accepts an invitation to a repository.
  • `removed` - A user is removed as a collaborator in a repository.
  • `edited` - A user's collaborator permissions have changed.
From 9979002e8f212298db8b8e02d5b889e7ad96d905 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 22:01:13 -0400 Subject: [PATCH 20/26] typo: isnt -> isn't --- data/reusables/webhooks/ping_short_desc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/webhooks/ping_short_desc.md b/data/reusables/webhooks/ping_short_desc.md index 139c6735e2fd..4ef916b7b94b 100644 --- a/data/reusables/webhooks/ping_short_desc.md +++ b/data/reusables/webhooks/ping_short_desc.md @@ -1 +1 @@ -When you create a new webhook, we'll send you a simple `ping` event to let you know you've set up the webhook correctly. This event isnt stored so it isn't retrievable via the [Events API](/rest/reference/activity#ping-a-repository-webhook) endpoint. +When you create a new webhook, we'll send you a simple `ping` event to let you know you've set up the webhook correctly. This event isn't stored so it isn't retrievable via the [Events API](/rest/reference/activity#ping-a-repository-webhook) endpoint. From 7545e718d6c07b8ad34f8a4301de95e116ac4d96 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 22:01:47 -0400 Subject: [PATCH 21/26] typo: vulerable -> vulnerable --- .../webhooks/repository_vulnerability_alert_short_desc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/webhooks/repository_vulnerability_alert_short_desc.md b/data/reusables/webhooks/repository_vulnerability_alert_short_desc.md index 635c979d782d..00324e3dc14c 100644 --- a/data/reusables/webhooks/repository_vulnerability_alert_short_desc.md +++ b/data/reusables/webhooks/repository_vulnerability_alert_short_desc.md @@ -1 +1 @@ -Activity related to security vulnerability alerts in a repository. {% data reusables.webhooks.action_type_desc %} For more information, see the "[About security alerts for vulerable dependencies](/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies)". +Activity related to security vulnerability alerts in a repository. {% data reusables.webhooks.action_type_desc %} For more information, see the "[About security alerts for vulnerable dependencies](/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies)". From 26a528a64521c76bb5b198424ac448fa306aab3b Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 22:04:00 -0400 Subject: [PATCH 22/26] typo: accesible -> accessible --- data/variables/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/variables/README.md b/data/variables/README.md index 9eb6de78d605..7486f637b78e 100644 --- a/data/variables/README.md +++ b/data/variables/README.md @@ -18,7 +18,7 @@ nested: too: Yes! ``` -Its values would be accesible as: +Its values would be accessible as: ``` {% data foo.bar.meaning_of_life %} From f2419311b49aaaa9ea91411355d7a22df6755914 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 22:13:50 -0400 Subject: [PATCH 23/26] typo: enviroment -> environment --- contributing/node-versions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing/node-versions.md b/contributing/node-versions.md index 9ab9c9a66a1c..934f75157737 100644 --- a/contributing/node-versions.md +++ b/contributing/node-versions.md @@ -1,6 +1,6 @@ # Node Versions -In [development](contributing/development.md) enviroments this site will run on Node.js versions `12 - 14`. +In [development](contributing/development.md) environments this site will run on Node.js versions `12 - 14`. In [staging and production](contributing/deployments.md) environments this site runs on Node.js 14, the [Active LTS version](https://nodejs.org/en/about/releases/) from 2020-10-27 to 2021-10-26). From b94143cd414b3e2da3a219f3073922835a3e4fe4 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 22 Oct 2020 22:21:36 -0400 Subject: [PATCH 24/26] typo: continously -> continuously --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index df273cd7931f..b298535af31d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -89,7 +89,7 @@ A [pull request](https://docs.github.com/en/github/collaborating-with-issues-and When we merge those changes, they should be deployed to the live site within 24 hours. :earth_africa: To learn more about opening a pull request in this repo, see [Opening a pull request](#opening-a-pull-request) below. ### :question: Support -We are a small team working hard to keep up with the documentation demands of a continously changing product. Unfortunately, we just can't help with support questions in this repository. If you are experiencing a problem with GitHub, unrelated to our documentation, please [contact GitHub Support directly](https://support.github.com/contact). Any issues, discussions, or pull requests opened here requesting support will be given information about how to contact GitHub Support, then closed and locked. +We are a small team working hard to keep up with the documentation demands of a continuously changing product. Unfortunately, we just can't help with support questions in this repository. If you are experiencing a problem with GitHub, unrelated to our documentation, please [contact GitHub Support directly](https://support.github.com/contact). Any issues, discussions, or pull requests opened here requesting support will be given information about how to contact GitHub Support, then closed and locked. If you're having trouble with your GitHub account, contact [Support](https://support.github.com/contact). From f4710f09c5193239ae62afc70b318f8e974ea8b1 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Fri, 23 Oct 2020 18:47:14 -0400 Subject: [PATCH 25/26] typo: perfomed -> performed --- .../security-hardening-for-github-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/learn-github-actions/security-hardening-for-github-actions.md b/content/actions/learn-github-actions/security-hardening-for-github-actions.md index 57cef7eb3ed2..9bb9473ef4c1 100644 --- a/content/actions/learn-github-actions/security-hardening-for-github-actions.md +++ b/content/actions/learn-github-actions/security-hardening-for-github-actions.md @@ -98,7 +98,7 @@ You should also consider the environment of the self-hosted runner machines: ### Auditing {% data variables.product.prodname_actions %} events -You can use the audit log to monitor administrative tasks in an organization. The audit log records the type of action, when it was run, and which user account perfomed the action. +You can use the audit log to monitor administrative tasks in an organization. The audit log records the type of action, when it was run, and which user account performed the action. For example, you can use the audit log to track the `action:org.update_actions_secret` event, which tracks changes to organization secrets: ![Audit log entries](/assets/images/help/repository/audit-log-entries.png) From d54a32361e23e2363ad4dac97665aafcc922c42b Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Wed, 4 Nov 2020 14:49:22 -0500 Subject: [PATCH 26/26] typo: signficant -> significant --- content/actions/guides/building-and-testing-powershell.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/guides/building-and-testing-powershell.md b/content/actions/guides/building-and-testing-powershell.md index b600e09d160f..9ac0673ebdf9 100644 --- a/content/actions/guides/building-and-testing-powershell.md +++ b/content/actions/guides/building-and-testing-powershell.md @@ -85,7 +85,7 @@ The table below describes the locations for various PowerShell modules in each { {% note %} -**Note:** The pre-installed packages (such as Pester) used by {% data variables.product.prodname_dotcom %}-hosted runners are regularly updated, and can introduce signficant changes. As a result, it is recommended that you always specify the required package versions by using `Install-Module` with `-MaximumVersion`. +**Note:** The pre-installed packages (such as Pester) used by {% data variables.product.prodname_dotcom %}-hosted runners are regularly updated, and can introduce significant changes. As a result, it is recommended that you always specify the required package versions by using `Install-Module` with `-MaximumVersion`. {% endnote %}