Skip to content

Commit 0f5be96

Browse files
fix(regression.yml): minimal YAML-safe notify step, echo only — RR-03 final
Removed detailed Slack notification for live-regression failure and replaced it with a simpler echo command.
1 parent dc92562 commit 0f5be96

1 file changed

Lines changed: 2 additions & 16 deletions

File tree

.github/workflows/regression.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -99,20 +99,6 @@ jobs:
9999
&& echo "audit: turn_count=$TC OK" \
100100
|| { echo "audit: turn_count=$TC < 30"; exit 1; }
101101
102-
- name: Notify on live-regression failure
102+
- name: Notify on live-regression failure
103103
if: failure()
104-
env:
105-
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
106-
RUN_ID: ${{ github.run_id }}
107-
run: |
108-
echo '[DGAF] live-regression failed - Vercel unavailable. Suite passing via continue-on-error.'
109-
if [ -n "${SLACK_WEBHOOK}" ]; then
110-
python3 -c '
111-
import os, urllib.request, json
112-
url = os.environ["SLACK_WEBHOOK"]
113-
run = os.environ.get("RUN_ID", "unknown")
114-
msg = json.dumps({"text": "[DGAF] live-regression failed (run " + run + "). Vercel may be unavailable."})
115-
req = urllib.request.Request(url, msg.encode(), {"Content-Type": "application/json"})
116-
urllib.request.urlopen(req)
117-
'
118-
fi
104+
run: echo DGAF live-regression failed run ${{ github.run_id }} Vercel unavailable suite passing via continue-on-error

0 commit comments

Comments
 (0)