diff --git a/assets/images/help/issues/new-issue-page-with-multiple-templates.png b/assets/images/help/issues/new-issue-page-with-multiple-templates.png
index 560f099959..8e196047cc 100644
Binary files a/assets/images/help/issues/new-issue-page-with-multiple-templates.png and b/assets/images/help/issues/new-issue-page-with-multiple-templates.png differ
diff --git a/components/playground/content/codespaces/setting-up-your-project-for-codespaces/setting-up-your-project-for-codespaces/python.tsx b/components/playground/content/codespaces/setting-up-your-project-for-codespaces/setting-up-your-project-for-codespaces/python.tsx
index 590ee9d10c..3a3c01be12 100644
--- a/components/playground/content/codespaces/setting-up-your-project-for-codespaces/setting-up-your-project-for-codespaces/python.tsx
+++ b/components/playground/content/codespaces/setting-up-your-project-for-codespaces/setting-up-your-project-for-codespaces/python.tsx
@@ -53,7 +53,7 @@ const article: PlaygroundArticleT = {
To set up your repository to use a custom dev container, you will need to create one or more \`devcontainer.json\` files. You can add these either from a template, in Visual Studio Code, or you can write your own. For more information on dev container configurations, see "[Introduction to dev containers](/codespaces/setting-up-your-codespace/configuring-codespaces-for-your-project)".
- 1. Access the Command Palette (\`Shift + Command + P\` / \`Ctrl + Shift + P\`), then start typing "dev container". Select **Codespaces: Add Development Container Configuration Files...**.
+ 1. Access the Command Palette (\`Shift+Command+P\` / \`Ctrl+Shift+P\`), then start typing "dev container". Select **Codespaces: Add Development Container Configuration Files...**.

2. For this example, click **Python 3**. If you need additional features you can select any container that’s specific to Python or a combination of tools such as Python 3 and PostgreSQL.

@@ -62,7 +62,7 @@ const article: PlaygroundArticleT = {
4. Accept the default option to add Node.js to your customization.

5. Select any additional features to install and click **OK**.
- 6. Access the command palette (\`Shift + Command + P\`/ \`Ctrl + Shift + P\`), then start typing "rebuild". Select **Codespaces: Rebuild Container**.
+ 6. Access the command palette (\`Shift+Command+P\`/ \`Ctrl+Shift+P\`), then start typing "rebuild". Select **Codespaces: Rebuild Container**.

`,
},
@@ -197,7 +197,7 @@ const article: PlaygroundArticleT = {
"postCreateCommand": "pip3 install --user -r requirements.txt",
\`\`\`
- 4. Access the command palette (\`Shift + Command + P\`/ \`Ctrl + Shift + P\`), then start typing "rebuild". Select **Codespaces: Rebuild Container**.
+ 4. Access the command palette (\`Shift+Command+P\`/ \`Ctrl+Shift+P\`), then start typing "rebuild". Select **Codespaces: Rebuild Container**.

diff --git a/content/actions/using-github-hosted-runners/about-github-hosted-runners.md b/content/actions/using-github-hosted-runners/about-github-hosted-runners.md
index 562a1c82fd..d67f9e056d 100644
--- a/content/actions/using-github-hosted-runners/about-github-hosted-runners.md
+++ b/content/actions/using-github-hosted-runners/about-github-hosted-runners.md
@@ -111,6 +111,7 @@ For more information, see "[Viewing workflow run history](/actions/managing-work
For the overall list of included tools for each runner operating system, see the links below:
+* [Ubuntu 22.04 LTS](https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2204-Readme.md)
* [Ubuntu 20.04 LTS](https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md)
* [Ubuntu 18.04 LTS](https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu1804-Readme.md)
* [Windows Server 2022](https://github.com/actions/virtual-environments/blob/main/images/win/Windows2022-Readme.md)
diff --git a/content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-visual-studio.md b/content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-visual-studio.md
index b7835f4513..7bae5e4ffd 100644
--- a/content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-visual-studio.md
+++ b/content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-visual-studio.md
@@ -50,9 +50,9 @@ To use {% data variables.product.prodname_copilot %}, you must first install the
{% data reusables.copilot.supported-languages %} The following samples are in C#, but other languages will work similarly.
{% data reusables.copilot.create-c-file %}
-1. In the C# file, type the following function header. {% data variables.product.prodname_copilot %} will automatically suggest an entire function body in grayed text, as shown below. The exact suggestion may vary.
+1. In the C# file, type the following function signature. {% data variables.product.prodname_copilot %} will automatically suggest an entire function body in grayed text, as shown below. The exact suggestion may vary.
```csharp{:copy}
- function calculateDaysBetweenDates(begin, end) {
+ int CalculateDaysBetweenDates(
```

{% data reusables.copilot.accept-suggestion %}
@@ -60,10 +60,10 @@ To use {% data variables.product.prodname_copilot %}, you must first install the
## Seeing alternative suggestions
{% data reusables.copilot.alternative-suggestions %}
{% data reusables.copilot.create-c-file %}
-1. In the C# file, type the following function header. {% data variables.product.prodname_copilot %} will show you a suggestion.
+1. In the C# file, type the following function signature. {% data variables.product.prodname_copilot %} will show you a suggestion.
```csharp{:copy}
- function calculateDaysBetweenDates(begin, end) {
+ int CalculateDaysBetweenDates(
```
1. If alternative suggestions are available, you can see these alternatives by pressing Alt+] (or Alt+[).
1. Optionally, you can hover over the suggestion to see the {% data variables.product.prodname_copilot %} command palette for choosing suggestions.
diff --git a/content/packages/quickstart.md b/content/packages/quickstart.md
index 6e19d81e19..839256b3ce 100644
--- a/content/packages/quickstart.md
+++ b/content/packages/quickstart.md
@@ -27,7 +27,7 @@ In this guide, you'll create a {% data variables.product.prodname_actions %} wor
3. Create an `index.js` file and add a basic alert to say "Hello world!"
{% raw %}
```javascript{:copy}
- alert("Hello, World!");
+ console.log("Hello, World!");
```
{% endraw %}
4. Initialize an npm package with `npm init`. In the package initialization wizard, enter your package with the name: _`@YOUR-USERNAME/YOUR-REPOSITORY`_, and set the test script to `exit 0`. This will generate a `package.json` file with information about your package.