Skip to content

Commit a5e8409

Browse files
Merge pull request #227482 from juliakm/users/jukullam/acrolinx-gha-dbs-feb
Freshness and acrolinx fixes for GitHub Actions DB articles
2 parents ad58a78 + 5358115 commit a5e8409

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

articles/mysql/single-server/quickstart-mysql-github-actions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.subservice: single-server
77
ms.topic: quickstart
88
ms.author: jukullam
99
ms.custom: github-actions-azure, mode-other
10-
ms.date: 10/26/2022
10+
ms.date: 02/15/2023
1111
---
1212

1313
# Quickstart: Use GitHub Actions to connect to Azure MySQL
@@ -49,7 +49,7 @@ The file has two sections:
4949

5050
## Copy the MySQL connection string
5151

52-
In the Azure portal, go to your Azure Database for MySQL server and open **Settings** > **Connection strings**. Copy the **ADO.NET** connection string. Replace the placeholder values for `your_database` and `your_password`. The connection string will look similar to the following.
52+
In the Azure portal, go to your Azure Database for MySQL server and open **Settings** > **Connection strings**. Copy the **ADO.NET** connection string. Replace the placeholder values for `your_database` and `your_password`. The connection string looks similar to the following.
5353

5454
> [!IMPORTANT]
5555
>
@@ -84,7 +84,7 @@ You'll use the connection string as a GitHub secret.
8484
branches: [ main ]
8585
```
8686
87-
4. Rename your workflow `MySQL for GitHub Actions` and add the checkout and login actions. These actions will check out your site code and authenticate with Azure using the `AZURE_CREDENTIALS` GitHub secret you created earlier.
87+
4. Rename your workflow `MySQL for GitHub Actions` and add the checkout and login actions. These actions check out your site code and authenticate with Azure using the `AZURE_CREDENTIALS` GitHub secret you created earlier.
8888

8989
# [Service principal](#tab/userlevel)
9090

@@ -142,7 +142,7 @@ You'll use the connection string as a GitHub secret.
142142
sql-file: './data.sql'
143143
```
144144

145-
6. Complete your workflow by adding an action to sign out of Azure. Here's the completed workflow. The file will appear in the `.github/workflows` folder of your repository.
145+
6. Complete your workflow by adding an action to sign out of Azure. Here's the completed workflow. The file appears in the `.github/workflows` folder of your repository.
146146

147147
# [Service principal](#tab/userlevel)
148148

articles/postgresql/single-server/how-to-deploy-github-action.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: sunila
88
author: sunilagarwal
99
ms.reviewer: ""
1010
ms.custom: github-actions-azure, mode-other
11-
ms.date: 06/24/2022
11+
ms.date: 02/15/2023
1212
---
1313

1414
# Quickstart: Use GitHub Actions to connect to Azure PostgreSQL
@@ -21,7 +21,7 @@ Get started with [GitHub Actions](https://docs.github.com/en/actions) by using a
2121

2222
## Prerequisites
2323

24-
You will need:
24+
You'll need:
2525
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
2626
- A GitHub repository with sample data (`data.sql`). If you don't have a GitHub account, [sign up for free](https://github.com/join).
2727
- An Azure Database for PostgreSQL server.
@@ -44,7 +44,7 @@ The file has two sections:
4444

4545
## Copy the PostgreSQL connection string
4646

47-
In the Azure portal, go to your Azure Database for PostgreSQL server and open **Settings** > **Connection strings**. Copy the **ADO.NET** connection string. Replace the placeholder values for `your_database` and `your_password`. The connection string will look similar to this.
47+
In the Azure portal, go to your Azure Database for PostgreSQL server and open **Settings** > **Connection strings**. Copy the **ADO.NET** connection string. Replace the placeholder values for `your_database` and `your_password`. The connection string looks similar to this.
4848

4949
> [!IMPORTANT]
5050
> - For Single server use ```user=adminusername@servername``` . Note the ```@servername``` is required.
@@ -54,7 +54,7 @@ In the Azure portal, go to your Azure Database for PostgreSQL server and open **
5454
psql host={servername.postgres.database.azure.com} port=5432 dbname={your_database} user={adminusername} password={your_database_password} sslmode=require
5555
```
5656

57-
You will use the connection string as a GitHub secret.
57+
You'll use the connection string as a GitHub secret.
5858

5959
## Configure the GitHub secrets
6060

@@ -78,7 +78,7 @@ You will use the connection string as a GitHub secret.
7878
branches: [ main ]
7979
```
8080
81-
1. Rename your workflow `PostgreSQL for GitHub Actions` and add the checkout and login actions. These actions will checkout your site code and authenticate with Azure using the GitHub secret(s) you created earlier.
81+
1. Rename your workflow `PostgreSQL for GitHub Actions` and add the checkout and login actions. These actions check out your site code and authenticate with Azure using the GitHub secret(s) you created earlier.
8282

8383
# [Service principal](#tab/userlevel)
8484

@@ -134,7 +134,7 @@ You will use the connection string as a GitHub secret.
134134
sql-file: './data.sql'
135135
```
136136

137-
3. Complete your workflow by adding an action to logout of Azure. Here is the completed workflow. The file will appear in the `.github/workflows` folder of your repository.
137+
3. Complete your workflow by adding an action to logout of Azure. Here's the completed workflow. The file appears in the `.github/workflows` folder of your repository.
138138

139139
# [Service principal](#tab/userlevel)
140140

0 commit comments

Comments
 (0)