1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Fix trailing spaces in content and data (#37904)

This commit is contained in:
Grace Park
2023-06-23 10:45:10 -07:00
committed by GitHub
parent 07dcb8c294
commit cbda3f2434
369 changed files with 642 additions and 641 deletions

View File

@@ -134,6 +134,5 @@ The following resources may also be useful:
- For the original starter workflow, see [`azure-webapps-node.yml`](https://github.com/actions/starter-workflows/blob/main/deployments/azure-webapps-node.yml) in the {% data variables.product.prodname_actions %} `starter-workflows` repository. - For the original starter workflow, see [`azure-webapps-node.yml`](https://github.com/actions/starter-workflows/blob/main/deployments/azure-webapps-node.yml) in the {% data variables.product.prodname_actions %} `starter-workflows` repository.
- The action used to deploy the web app is the official Azure [`Azure/webapps-deploy`](https://github.com/Azure/webapps-deploy) action. - The action used to deploy the web app is the official Azure [`Azure/webapps-deploy`](https://github.com/Azure/webapps-deploy) action.
- For more examples of GitHub Action workflows that deploy to Azure, see the - For more examples of GitHub Action workflows that deploy to Azure, see the [actions-workflow-samples](https://github.com/Azure/actions-workflow-samples) repository.
[actions-workflow-samples](https://github.com/Azure/actions-workflow-samples) repository.
- The "[Create a Node.js web app in Azure](https://docs.microsoft.com/azure/app-service/quickstart-nodejs)" quickstart in the Azure web app documentation demonstrates using {% data variables.product.prodname_vscode %} with the [Azure App Service extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azureappservice). - The "[Create a Node.js web app in Azure](https://docs.microsoft.com/azure/app-service/quickstart-nodejs)" quickstart in the Azure web app documentation demonstrates using {% data variables.product.prodname_vscode %} with the [Azure App Service extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azureappservice).

View File

@@ -136,6 +136,7 @@ The `metadata-action` option required for {% data variables.product.prodname_reg
{% endif %} {% endif %}
The `build-push-action` options required for {% data variables.product.prodname_registry %} are:{% ifversion fpt or ghec %} The `build-push-action` options required for {% data variables.product.prodname_registry %} are:{% ifversion fpt or ghec %}
- `context`: Defines the build's context as the set of files located in the specified path.{% endif %} - `context`: Defines the build's context as the set of files located in the specified path.{% endif %}
- `push`: If set to `true`, the image will be pushed to the registry if it is built successfully.{% ifversion fpt or ghec %} - `push`: If set to `true`, the image will be pushed to the registry if it is built successfully.{% ifversion fpt or ghec %}
- `tags` and `labels`: These are populated by output from `metadata-action`.{% else %} - `tags` and `labels`: These are populated by output from `metadata-action`.{% else %}

View File

@@ -41,6 +41,8 @@ If you want to work on a codespace in a JetBrains IDE you must install the JetBr
- If you choose **JetBrains Gateway**, the Gateway application will automatically open when you next create or open a codespace. - If you choose **JetBrains Gateway**, the Gateway application will automatically open when you next create or open a codespace.
* If you choose **JetBrains Gateway**, the Gateway application will automatically open when you next create or open a codespace.
The first time you open a codespace this way you must give permission to open the application. The first time you open a codespace this way you must give permission to open the application.
The Gateway application will open and the codespace will then be automatically selected. You can then choose a JetBrains IDE, if you have not previously done so, and click **Connect** to open the codespace in the JetBrains client. For more information, see "[AUTOTITLE](/codespaces/developing-in-codespaces/using-github-codespaces-in-your-jetbrains-ide)." The Gateway application will open and the codespace will then be automatically selected. You can then choose a JetBrains IDE, if you have not previously done so, and click **Connect** to open the codespace in the JetBrains client. For more information, see "[AUTOTITLE](/codespaces/developing-in-codespaces/using-github-codespaces-in-your-jetbrains-ide)."

View File

@@ -3,4 +3,3 @@
```javascript copy ```javascript copy
function calculateDaysBetweenDates(begin, end) { function calculateDaysBetweenDates(begin, end) {
``` ```