Skip to content
This repository has been archived by the owner on Nov 1, 2017. It is now read-only.

Commit

Permalink
Merge pull request #1079 from github/fix-capitalization
Browse files Browse the repository at this point in the history
Fix capitalization for "pull request"
  • Loading branch information
pravipati committed Jun 28, 2016
2 parents b403633 + d7502f6 commit 6eb206e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions content/guides/delivering-deployments.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ the moment your code lands on `master`.
This guide will use that API to demonstrate a setup that you can use.
In our scenario, we will:

* Merge a Pull Request
* When the CI is finished, we'll set the Pull Request's status accordingly.
* When the Pull Request is merged, we'll run our deployment to our server.
* Merge a pull request
* When the CI is finished, we'll set the pull request's status accordingly.
* When the pull request is merged, we'll run our deployment to our server.

Our CI system and host server will be figments of our imagination. They could be
Heroku, Amazon, or something else entirely. The crux of this guide will be setting up
Expand Down Expand Up @@ -50,7 +50,7 @@ Start this server up. By default, Sinatra starts on port `4567`, so you'll want
to configure ngrok to start listening for that, too.

In order for this server to work, we'll need to set a repository up with a webhook.
The webhook should be configured to fire whenever a Pull Request is created, or merged.
The webhook should be configured to fire whenever a pull request is created, or merged.
Go ahead and create a repository you're comfortable playing around in. Might we
suggest [@octocat's Spoon/Knife repository](https://github.com/octocat/Spoon-Knife)?
After that, you'll create a new webhook in your repository, feeding it the URL
Expand All @@ -67,7 +67,7 @@ Great! Click on **Let me select individual events.**, and select the following:
* Pull Request

These are the events {{ site.data.variables.product.product_name }} will send to our server whenever the relevant action
occurs. We'll configure our server to *just* handle when Pull Requests are merged
occurs. We'll configure our server to *just* handle when pull requests are merged
right now:

``` ruby
Expand Down

0 comments on commit 6eb206e

Please sign in to comment.