From 723055226c743c21494ce5d11f82ad4f25f1301e Mon Sep 17 00:00:00 2001 From: Hindrik Bruinsma Date: Tue, 12 Nov 2024 15:21:34 +0100 Subject: [PATCH] Add workflow to update storage account table --- .../workflows/update-redirect-uri-table.yaml | 46 +++++++++++++++++++ shorts.csv | 2 + 2 files changed, 48 insertions(+) create mode 100644 .github/workflows/update-redirect-uri-table.yaml create mode 100644 shorts.csv diff --git a/.github/workflows/update-redirect-uri-table.yaml b/.github/workflows/update-redirect-uri-table.yaml new file mode 100644 index 0000000..50107b6 --- /dev/null +++ b/.github/workflows/update-redirect-uri-table.yaml @@ -0,0 +1,46 @@ +name: Update redirects uri table + +on: + push: + paths: + - shorts.csv # Trigger the workflow when this file is modified + +permissions: + id-token: write + contents: read + +jobs: + update_table: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Azure login + uses: azure/login@v2 + with: + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + + - name: Install Azure CLI Storage Table extension + run: | + az extension add --name storage-preview + + - name: Update Azure Table with CSV Data + run: | + # Read the CSV and iterate over each line (skipping header) + while IFS=, read -r short_path redirect_uri title; do + # Skip header + if [ "$short_path" != "ShortPath" ]; then + echo "Processing: ShortPath=$short_path, RedirectUri=$redirect_uri, Title=$title" + # Insert or update the entity in Azure Table Storage + az storage entity insert \ + --auth-mode login \ + --account-name ${{ secrets.STORAGE_ACCOUNT_NAME }} \ + --table-name ${{ secrets.STORAGE_TABLE_NAME }} \ + --entity PartitionKey="${short_path:0:1}" RowKey="$short_path" Url="$redirect_uri" Title="$title" \ + --if-exists replace + fi + done < shorts.csv diff --git a/shorts.csv b/shorts.csv new file mode 100644 index 0000000..c228347 --- /dev/null +++ b/shorts.csv @@ -0,0 +1,2 @@ +ShortPath,RedirectUri,Title +xms,https://xebia.com/digital-transformation/microsoft-services/,Xebia Microsoft services