From 29282ff72e1932bc05dfc6fda4d246934247235c Mon Sep 17 00:00:00 2001 From: proudmuslim-dev <69869443+proudmuslim-dev@users.noreply.github.com> Date: Fri, 18 Mar 2022 09:12:03 -0700 Subject: [PATCH 1/3] Add octocat-rs to Rust libraries --- content/rest/overview/libraries.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/rest/overview/libraries.md b/content/rest/overview/libraries.md index 0128487f72..4446556a94 100644 --- a/content/rest/overview/libraries.md +++ b/content/rest/overview/libraries.md @@ -138,6 +138,7 @@ topics: | Library name | Repository | |---|---| |**Octocrab**|[XAMPPRocky/octocrab](https://github.com/XAMPPRocky/octocrab)| +|**Octocat**|[octocat-rs/octocat-rs](https://github.com/octocat-rs/octocat-rs)| ### Scala From 3ba7b5f2558df30c938df01d5a37cf1a2a9b41d6 Mon Sep 17 00:00:00 2001 From: Ranul Date: Thu, 12 May 2022 05:16:13 +0530 Subject: [PATCH 2/3] Update to "Styling text" section - Added writing superscript syntax on GitHub markdowns for inline text to be displayed as superscript - Added writing subscript syntax on GitHub markdowns for inline text to be displayed as subscript Reference Issue: #17618 --- .../basic-writing-and-formatting-syntax.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md b/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md index 3446f690ed..c4f4a768cc 100644 --- a/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md +++ b/content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md @@ -31,7 +31,7 @@ When you use two or more headings, GitHub automatically generates a table of con ## Styling text -You can indicate emphasis with bold, italic, or strikethrough text in comment fields and `.md` files. +You can indicate emphasis with bold, italic, strikethrough, subscript, or superscript text in comment fields and `.md` files. | Style | Syntax | Keyboard shortcut | Example | Output | | --- | --- | --- | --- | --- | @@ -40,6 +40,8 @@ You can indicate emphasis with bold, italic, or strikethrough text in comment fi | Strikethrough | `~~ ~~` | | `~~This was mistaken text~~` | ~~This was mistaken text~~ | | Bold and nested italic | `** **` and `_ _` | | `**This text is _extremely_ important**` | **This text is _extremely_ important** | | All bold and italic | `*** ***` | | `***All this text is important***` | ***All this text is important*** | +| Subscript | ` ` | | `This is a subscript text` | This is a subscript text | +| Superscript | ` ` | | `This is a superscript text` | This is a superscript text | ## Quoting text From df102201d4777cd14da72a8cea6546726db8b5c1 Mon Sep 17 00:00:00 2001 From: Jan Brasna <1784648+janbrasna@users.noreply.github.com> Date: Fri, 13 May 2022 02:55:36 +0200 Subject: [PATCH 3/3] Fix choosing a runner wording --- .../about-deployments/deploying-with-github-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/deployment/about-deployments/deploying-with-github-actions.md b/content/actions/deployment/about-deployments/deploying-with-github-actions.md index f84c550826..281b69f1cc 100644 --- a/content/actions/deployment/about-deployments/deploying-with-github-actions.md +++ b/content/actions/deployment/about-deployments/deploying-with-github-actions.md @@ -156,7 +156,7 @@ You can also build an app that uses deployment and deployment status webhooks to ## Choosing a runner -You can run your deployment workflow on {% data variables.product.company_short %}-hosted runners or on self-hosted runners. Traffic from {% data variables.product.company_short %}-hosted runners can come from a [wide range of network addresses](/rest/reference/meta#get-github-meta-information). If you are deploying to an internal environment and your company restricts external traffic into private networks, {% data variables.product.prodname_actions %} workflows running on {% data variables.product.company_short %}-hosted runners may not be communicate with your internal services or resources. To overcome this, you can host your own runners. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners)" and "[About GitHub-hosted runners](/actions/using-github-hosted-runners/about-github-hosted-runners)." +You can run your deployment workflow on {% data variables.product.company_short %}-hosted runners or on self-hosted runners. Traffic from {% data variables.product.company_short %}-hosted runners can come from a [wide range of network addresses](/rest/reference/meta#get-github-meta-information). If you are deploying to an internal environment and your company restricts external traffic into private networks, {% data variables.product.prodname_actions %} workflows running on {% data variables.product.company_short %}-hosted runners may not be able to communicate with your internal services or resources. To overcome this, you can host your own runners. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners)" and "[About GitHub-hosted runners](/actions/using-github-hosted-runners/about-github-hosted-runners)." {% endif %}