Skip to content

Commit e457ace

Browse files
nane
1 parent 38abd2d commit e457ace

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/final_combined.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
id: prepare_json_files
3434
run: |
3535
36-
echo "🔍 Collecting changed JSON files…"
36+
echo " Collecting changed JSON files…"
3737
BASE="${{ github.event.pull_request.base.sha }}"
3838
HEAD="${{ github.event.pull_request.head.sha }}"
3939
@@ -68,18 +68,18 @@ jobs:
6868
id: fetch_token
6969
run: |
7070
71-
echo "🔐 Fetching OIDC token…"
71+
echo " Fetching OIDC token…"
7272
raw=$(curl -s -H "Authorization: Bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "${ACTIONS_ID_TOKEN_REQUEST_URL}&audience=api://${CLIENT_ID}")
7373
token=$(echo "$raw" | jq -r .value)
7474
echo "✔️ Got token (length=${#token})"
7575
echo "TOKEN=$token" >> $GITHUB_ENV
7676
7777
78-
- name: 📡 Health-check GET
78+
- name: Health-check GET
7979
if: env.JSON_PAYLOAD_PATH != 'empty'
8080
run: |
8181
82-
echo "🚀 Hitting $API_BASE…"
82+
echo " Hitting $API_BASE…"
8383
# Capture both body and status
8484
resp=$(curl -s -w "\n%{http_code}" -H "Authorization: Bearer $TOKEN" "$API_BASE")
8585
body=$(echo "$resp" | sed '$d') # all but last line
@@ -99,7 +99,7 @@ jobs:
9999
exit 1
100100
fi
101101
102-
- name: 📦 POST polling payload
102+
- name: POST CCP payload
103103
if: env.JSON_PAYLOAD_PATH != 'empty'
104104
run: |
105105
echo "Sending JSON payload to API"

.github/workflows/final_dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
echo "TOKEN=$token" >> $GITHUB_ENV
7676
7777
78-
- name: 📡 Health-check GET
78+
- name: Health-check GET
7979
if: env.JSON_PAYLOAD_PATH != 'empty'
8080
run: |
8181
@@ -99,7 +99,7 @@ jobs:
9999
exit 1
100100
fi
101101
102-
- name: 📦 POST polling payload
102+
- name: 📦 POST CCP payload
103103
if: env.JSON_PAYLOAD_PATH != 'empty'
104104
run: |
105105
echo "Sending JSON payload to API"

0 commit comments

Comments
 (0)