Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/drift-to-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
# For each failed job, ensure a single open tracking issue
# exists. Title format `[harness-drift] <job name>` makes
# updates idempotent.
echo "$jobs_json" | python3 - <<'PY'
import json, os, subprocess, sys
JOBS_JSON="$jobs_json" python3 - <<'PY'
import json, os, subprocess

jobs = json.loads(sys.stdin.read())["jobs"]
jobs = json.loads(os.environ["JOBS_JSON"])["jobs"]
run_url = os.environ["RUN_URL"]

for job in jobs:
Expand Down
Loading