diff --git a/content/apps/creating-github-apps/guides/creating-ci-tests-with-the-checks-api.md b/content/apps/creating-github-apps/guides/creating-ci-tests-with-the-checks-api.md index 57b2cb6536..27351647f4 100644 --- a/content/apps/creating-github-apps/guides/creating-ci-tests-with-the-checks-api.md +++ b/content/apps/creating-github-apps/guides/creating-ci-tests-with-the-checks-api.md @@ -98,7 +98,7 @@ Great! Your app has permission to do the tasks you want it to do. Now you can ad ## Step 1.2. Adding event handling -Now that your app is subscribed to the **Check suite** and **Check run** events, it will start receiving the [`check_suite`](/webhooks-and-events/webhooks/webhook-events-and-payloads#check_suite) and [`check_run`](/webhooks-and-events/webhooks/webhook-events-and-payloads#check_run) webhooks. GitHub sends webhook payloads as `POST` requests. Because you forwarded your Smee webhook payloads to `http://localhost/event_handler:3000`, your server will receive the `POST` request payloads at the `post '/event_handler'` route. +Now that your app is subscribed to the **Check suite** and **Check run** events, it will start receiving the [`check_suite`](/webhooks-and-events/webhooks/webhook-events-and-payloads#check_suite) and [`check_run`](/webhooks-and-events/webhooks/webhook-events-and-payloads#check_run) webhooks. GitHub sends webhook payloads as `POST` requests. Because you forwarded your Smee webhook payloads to `http://localhost:3000/event_handler`, your server will receive the `POST` request payloads at the `post '/event_handler'` route. An empty `post '/event_handler'` route is already included in the `template_server.rb` file, which you downloaded in the [prerequisites](#prerequisites) section. The empty route looks like this: diff --git a/content/copilot/getting-started-with-github-copilot.md b/content/copilot/getting-started-with-github-copilot.md index a27ac15a17..955ffe0c20 100644 --- a/content/copilot/getting-started-with-github-copilot.md +++ b/content/copilot/getting-started-with-github-copilot.md @@ -366,8 +366,6 @@ If you use Neovim, you can view and incorporate suggestions from {% data variabl ## Installing the Neovim extension on macOS -{% data reusables.copilot.install-copilot-in-neovim %} - {% data reusables.copilot.install-copilot-in-neovim %} - To install {% data variables.product.prodname_copilot %} with Neovim's built-in plugin manager, enter the following command in Terminal: diff --git a/data/reusables/actions/installing-actions-importer.md b/data/reusables/actions/installing-actions-importer.md index 877b4a708f..5633e13e16 100644 --- a/data/reusables/actions/installing-actions-importer.md +++ b/data/reusables/actions/installing-actions-importer.md @@ -1,7 +1,7 @@ 1. Install the {% data variables.product.prodname_actions_importer %} CLI extension: ```bash{:copy} - $ gh extension install github/gh-actions-importer + gh extension install github/gh-actions-importer ``` 1. Verify that the extension is installed: @@ -18,4 +18,4 @@ forecast Forecast GitHub Actions usage from historical pipeline utilization. dry-run Convert a pipeline to a GitHub Actions workflow and output its yaml file. migrate Convert a pipeline to a GitHub Actions workflow and open a pull request with the changes. - ``` \ No newline at end of file + ```