You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -571,7 +570,7 @@ You can test that the server is listening to your app by triggering an event for
571
570
572
571
1. Create a new repository to use for testing your tutorial code. For more information, see "[AUTOTITLE](/repositories/creating-and-managing-repositories/creating-a-new-repository)."
573
572
1. Install the {% data variables.product.prodname_github_app %} on the repository you just created. For more information, see "[AUTOTITLE](/apps/using-github-apps/installing-your-own-github-app#installing-your-own-github-app)." During the installation process, choose **Only select repositories**, and select the repository you created in the previous step.
574
-
2. After you click **Install**, look at the output in the terminal tab where you're running `server.rb`. You should see something like this:
573
+
1. After you click **Install**, look at the output in the terminal tab where you're running `server.rb`. You should see something like this:
@@ -1147,7 +1146,7 @@ To push to a repository, your app must have write permissions for "Contents" in
1147
1146
To commit files, Git must know which username and email address to associate with the commit. Next you'll add environment variables to store the name and email address that your app will use when it makes Git commits.
1148
1147
1149
1148
1. Open the `.env` file you created earlier in this tutorial.
1150
-
2. Add the following environment variables to your `.env` file. Replace `APP_NAME` with the name of your app, and `EMAIL_ADDRESS` with any email you'd like to use for this example.
1149
+
1. Add the following environment variables to your `.env` file. Replace `APP_NAME` with the name of your app, and `EMAIL_ADDRESS` with any email you'd like to use for this example.
1151
1150
1152
1151
```shell copy
1153
1152
GITHUB_APP_USER_NAME="APP_NAME"
@@ -1542,7 +1541,6 @@ class GHAapp < Sinatra::Application
1542
1541
# this request is an attack, and you should reject it. GitHub uses the HMAC
1543
1542
# hexdigest to compute the signature. The `X-HUB-Signature` looks something
1544
1543
# like this: 'sha1=123456'.
1545
-
# See https://developer.github.com/webhooks/securing/ for details.
0 commit comments