This commit is contained in:
2024-11-19 15:35:02 +01:00
parent cdf023cf38
commit da89a50f99
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ jobs:
url: ${{ secrets.WEBHOOK_URL_3 }} url: ${{ secrets.WEBHOOK_URL_3 }}
- -
name: Invoke deployment hook (scheduler) name: Invoke deployment hook (stream_notifications)
uses: joelwmale/webhook-action@master uses: joelwmale/webhook-action@master
with: with:
url: ${{ secrets.WEBHOOK_URL_4 }} url: ${{ secrets.WEBHOOK_URL_4 }}

View File

@@ -9,5 +9,5 @@ data=`echo $response | jq -r '.data.data'`
echo "$data" | jq -r 'to_entries[] | "\(.key)=\(.value)"' | while IFS= read -r line; do echo "$data" | jq -r 'to_entries[] | "\(.key)=\(.value)"' | while IFS= read -r line; do
key=$(echo "$line" | cut -d '=' -f 1) key=$(echo "$line" | cut -d '=' -f 1)
value=$(echo "$line" | cut -d '=' -f 2-) value=$(echo "$line" | cut -d '=' -f 2-)
echo "$key=$value" echo "$key=\"$value\""
done done