3
0

Ausgabe geändert

This commit is contained in:
Michael Otto
2026-03-03 10:13:19 +01:00
parent 79d02f7fb0
commit 3f3a1ae29e

View File

@@ -17,14 +17,13 @@ jobs:
run: | run: |
apk add --no-cache bash apk add --no-cache bash
- name: Payload anzeigen (roh) - name: RAW Event anzeigen
run: | run: |
echo "RAW EVENT:" echo "RAW EVENT:"
cat $GITHUB_EVENT_PATH cat $GITHUB_EVENT_PATH
- name: Payload anzeigen (dekodiert) - name: Payload dekodieren
run: | run: |
PAYLOAD_STRING="${{ github.event.inputs.client_payload }}"
echo "Dekodierter Payload:" echo "Dekodierter Payload:"
echo "$PAYLOAD_STRING" | jq . echo "${{ github.event.inputs.payload }}" | base64 -d