Skip to content

Commit 325dda3

Browse files
author
Jeroen Rietveld
committed
Change Github -> GitHub in MD files
1 parent d91f085 commit 325dda3

6 files changed

Lines changed: 17 additions & 17 deletions

File tree

content/developers/apps/creating-ci-tests-with-the-checks-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ versions:
1212

1313
### Introduction
1414

15-
This guide will introduce you to [Github Apps](/apps/) and the [Checks API](/rest/reference/checks), which you'll use to build a continuous integration (CI) server that runs tests.
15+
This guide will introduce you to [GitHub Apps](/apps/) and the [Checks API](/rest/reference/checks), which you'll use to build a continuous integration (CI) server that runs tests.
1616

1717
CI is a software practice that requires frequently committing code to a shared repository. Committing code more often raises errors sooner and reduces the amount of code a developer needs to debug when finding the source of an error. Frequent code updates also make it easier to merge changes from different members of a software development team. This is great for developers, who can spend more time writing code and less time debugging errors or resolving merge conflicts. 🙌
1818

@@ -49,7 +49,7 @@ To get an idea of what your Checks API CI server will do when you've completed t
4949

5050
### Prerequisites
5151

52-
Before you get started, you may want to familiarize yourself with [Github Apps](/apps/), [Webhooks](/webhooks), and the [Checks API](/rest/reference/checks), if you're not already. You'll find more APIs in the [REST API docs](/rest). The Checks API is also available to use in [GraphQL](/graphql), but this quickstart focuses on REST. See the GraphQL [Checks Suite](/graphql/reference/objects#checksuite) and [Check Run](/graphql/reference/objects#checkrun) objects for more details.
52+
Before you get started, you may want to familiarize yourself with [GitHub Apps](/apps/), [Webhooks](/webhooks), and the [Checks API](/rest/reference/checks), if you're not already. You'll find more APIs in the [REST API docs](/rest). The Checks API is also available to use in [GraphQL](/graphql), but this quickstart focuses on REST. See the GraphQL [Checks Suite](/graphql/reference/objects#checksuite) and [Check Run](/graphql/reference/objects#checkrun) objects for more details.
5353

5454
You'll use the [Ruby programming language](https://www.ruby-lang.org/en/), the [Smee](https://smee.io/) webhook payload delivery service, the [Octokit.rb Ruby library](http://octokit.github.io/octokit.rb/) for the GitHub REST API, and the [Sinatra web framework](http://sinatrarb.com/) to create your Checks API CI server app.
5555

@@ -203,7 +203,7 @@ Great! You've told GitHub to create a check run. You can see the check run statu
203203

204204
### Step 1.4. Updating a check run
205205

206-
When your `create_check_run` method runs, it asks GitHub to create a new check run. When Github finishes creating the check run, you'll receive the `check_run` webhook event with the `created` action. That event is your signal to begin running the check.
206+
When your `create_check_run` method runs, it asks GitHub to create a new check run. When GitHub finishes creating the check run, you'll receive the `check_run` webhook event with the `created` action. That event is your signal to begin running the check.
207207

208208
You'll want to update your event handler to look for the `created` action. While you're updating the event handler, you can add a conditional for the `rerequested` action. When someone re-runs a single test on GitHub by clicking the "Re-run" button, GitHub sends the `rerequested` check run event to your app. When a check run is `rerequested`, you'll want to start the process all over and create a new check run.
209209

content/developers/apps/migrating-oauth-apps-to-github-apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ GitHub Apps use [sliding rules for rate limits](/apps/building-github-apps/under
5252

5353
#### Register a new GitHub App
5454

55-
Once you've decided to make the switch to Github Apps, you'll need to [create a new GitHub App](/apps/building-github-apps/).
55+
Once you've decided to make the switch to GitHub Apps, you'll need to [create a new GitHub App](/apps/building-github-apps/).
5656

5757
#### Determine the permissions your app requires
5858

@@ -62,7 +62,7 @@ In your GitHub App's settings, you can specify whether your app needs `No Access
6262

6363
#### Subscribe to webhooks
6464

65-
After you've created a new GitHub App and selected its permissions, you can select the webhook events you wish to subscribe it to. See "[Editing a Github App's permissions](/apps/managing-github-apps/editing-a-github-app-s-permissions/)" to learn how to subscribe to webhooks.
65+
After you've created a new GitHub App and selected its permissions, you can select the webhook events you wish to subscribe it to. See "[Editing a GitHub App's permissions](/apps/managing-github-apps/editing-a-github-app-s-permissions/)" to learn how to subscribe to webhooks.
6666

6767
#### Understand the different methods of authentication
6868

content/developers/github-marketplace/handling-new-purchases-and-free-trials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ See "[{% data variables.product.prodname_marketplace %} webhook events](/marketp
3636

3737
If your app is a GitHub App, GitHub prompts the customer to select which repositories the app can access when they purchase it. GitHub then installs the app on the account the customer selected and grants access to the selected repositories.
3838

39-
At this point, if you specified a **Setup URL** in your GitHub App settings, Github will redirect the customer to that URL. If you do not specify a setup URL, you will not be able to handle purchases of your GitHub App.
39+
At this point, if you specified a **Setup URL** in your GitHub App settings, GitHub will redirect the customer to that URL. If you do not specify a setup URL, you will not be able to handle purchases of your GitHub App.
4040

4141
{% note %}
4242

content/github/setting-up-and-managing-organizations-and-teams/configuring-saml-single-sign-on-and-scim-using-okta.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ After you enable SCIM, the following provisioning features are available for any
3131
{% data reusables.saml.okta-dashboard-click-applications %}
3232
{% data reusables.saml.add-okta-application %}
3333
{% data reusables.saml.search-ghec-okta %}
34-
4. To the right of "Github Enterprise Cloud - Organization", click **Add**.
34+
4. To the right of "GitHub Enterprise Cloud - Organization", click **Add**.
3535
![Clicking "Add" for the {% data variables.product.prodname_ghe_cloud %} application](/assets/images/help/saml/okta-add-ghec-application.png)
3636

3737
5. In the **GitHub Organization** field, type the name of your {% data variables.product.prodname_dotcom %} organization. For example, if your organization's URL is https://github.com/octo-org, the organization name would be `octo-org`.
@@ -57,16 +57,16 @@ After you enable SCIM, the following provisioning features are available for any
5757
{% data reusables.saml.okta-enable-api-integration %}
5858

5959

60-
6. Click **Authenticate with Github Enterprise Cloud - Organization**.
61-
!["Authenticate with Github Enterprise Cloud - Organization" button for Okta application](/assets/images/help/saml/okta-authenticate-with-ghec-organization.png)
60+
6. Click **Authenticate with GitHub Enterprise Cloud - Organization**.
61+
!["Authenticate with GitHub Enterprise Cloud - Organization" button for Okta application](/assets/images/help/saml/okta-authenticate-with-ghec-organization.png)
6262

6363
7. To the right of your organization's name, click **Grant**.
6464
!["Grant" button for authorizing Okta SCIM integration to access organization](/assets/images/help/saml/okta-scim-integration-grant-organization-access.png)
6565

6666
{% note %}
67-
67+
6868
**Note**: If you don't see your organization in the list, go to `https://github.com/orgs/ORGANIZATION-NAME/sso` in your browser and authenticate with your organization via SAML SSO using your administrator account on the IdP. For example, if your organization's name is `octo-org`, the URL would be `https://github.com/orgs/octo-org/sso`. For more information, see "[About authentication with SAML single sign-on](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)."
69-
69+
7070
{% endnote %}
7171
1. Click **Authorize OktaOAN**.
7272
!["Authorize OktaOAN" button for authorizing Okta SCIM integration to access organization](/assets/images/help/saml/okta-scim-integration-authorize-oktaoan.png)

content/github/setting-up-and-managing-your-enterprise/configuring-saml-single-sign-on-and-scim-for-your-enterprise-account-using-okta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ To configure user provisioning with SCIM in Okta, you must authorize an OAuth ap
7676
{% data reusables.saml.okta-provisioning-tab %}
7777
{% data reusables.saml.okta-configure-api-integration %}
7878
{% data reusables.saml.okta-enable-api-integration %}
79-
1. Click **Authenticate with Github Enterprise Cloud - Enterprise Accounts**.
79+
1. Click **Authenticate with GitHub Enterprise Cloud - Enterprise Accounts**.
8080
![Button to authenticate with {% data variables.product.prodname_dotcom %}](/assets/images/help/business-accounts/authenticate-with-github-button.png)
8181
1. To the right of your enterprise account's name, click **Grant**.
8282
1. Click **Authorize okta-oauth**.

content/rest/overview/libraries.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ versions:
2525

2626
### Clojure
2727

28-
Library name | Repository
28+
Library name | Repository
2929
|---|---|
3030
**Tentacles**| [Raynes/tentacles](https://github.com/Raynes/tentacles)
3131

@@ -80,7 +80,7 @@ Library name | Repository |
8080

8181
Library name | Repository |
8282
|---|---|
83-
**Github.jl**|[WestleyArgentum/Github.jl](https://github.com/WestleyArgentum/GitHub.jl)
83+
**GitHub.jl**|[WestleyArgentum/GitHub.jl](https://github.com/WestleyArgentum/GitHub.jl)
8484

8585
### OCaml
8686

@@ -93,7 +93,7 @@ Library name | Repository |
9393
Library name | Repository | metacpan Website for the Library
9494
|---|---|---|
9595
**Pithub**|[plu/Pithub](https://github.com/plu/Pithub)|[Pithub CPAN](http://metacpan.org/module/Pithub)
96-
**Net::Github**|[fayland/perl-net-github](https://github.com/fayland/perl-net-github)|[Net:Github CPAN](https://metacpan.org/pod/Net::GitHub)
96+
**Net::GitHub**|[fayland/perl-net-github](https://github.com/fayland/perl-net-github)|[Net:GitHub CPAN](https://metacpan.org/pod/Net::GitHub)
9797

9898
### PHP
9999

@@ -105,8 +105,8 @@ Library name | Repository
105105
**GitHub Joomla! Package**|[joomla-framework/github-api](https://github.com/joomla-framework/github-api)
106106
**GitHub Nette Extension**|[kdyby/github](https://github.com/kdyby/github)
107107
**GitHub API Easy Access**|[milo/github-api](https://github.com/milo/github-api)
108-
**GitHub bridge for Laravel**|[GrahamCampbell/Laravel-Github](https://github.com/GrahamCampbell/Laravel-GitHub)
109-
**PHP7 Client & WebHook wrapper**|[FlexyProject/GithubAPI](https://github.com/FlexyProject/GitHubAPI)
108+
**GitHub bridge for Laravel**|[GrahamCampbell/Laravel-GitHub](https://github.com/GrahamCampbell/Laravel-GitHub)
109+
**PHP7 Client & WebHook wrapper**|[FlexyProject/GitHubAPI](https://github.com/FlexyProject/GitHubAPI)
110110

111111
### Python
112112

0 commit comments

Comments
 (0)