From 92cab784310e928a43384d53553ec26a0ecb5f4a Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Wed, 12 Apr 2023 08:56:07 -0700 Subject: [PATCH 1/3] Fix actions importer install copy (#24961) --- data/reusables/actions/installing-actions-importer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 + ``` From 5f5ab7699dd13d39c8186d36bc3b965d53ca3f0a Mon Sep 17 00:00:00 2001 From: vladislav doster <10052309+vladdoster@users.noreply.github.com> Date: Wed, 12 Apr 2023 11:09:49 -0500 Subject: [PATCH 2/3] fix: remove duplicate step in getting started guide (#24953) --- content/copilot/getting-started-with-github-copilot.md | 2 -- 1 file changed, 2 deletions(-) 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: From 3de367fcb7b7ebb8e23c8bdab23c622ff10e0188 Mon Sep 17 00:00:00 2001 From: Damien Cornu Date: Wed, 12 Apr 2023 18:20:32 +0200 Subject: [PATCH 3/3] Fix URL syntax in "CI tests with the Checks API" (#24941) --- .../guides/creating-ci-tests-with-the-checks-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: