28 lines
726 B
Bash
Executable File
28 lines
726 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if [[ -n "${GRAPH_STATE_FILE:-}" ]]; then
|
|
state=$(cat "$GRAPH_STATE_FILE")
|
|
elif [[ -n "${GRAPH_STATE:-}" ]]; then
|
|
state="$GRAPH_STATE"
|
|
else
|
|
state='{}'
|
|
fi
|
|
|
|
coder_result=$(echo "$state" | jq -r '.coder_result // ""')
|
|
|
|
case "$coder_result" in
|
|
*CODER_COMPLETE*)
|
|
jq -nc '{"_next": "verify_format_lint"}'
|
|
;;
|
|
*CODER_REJECTED*)
|
|
jq -nc '{"_next": "end_rejected"}'
|
|
;;
|
|
*CODER_FAILED*)
|
|
jq -nc '{"blocking_reason": "coder fix-loop exhausted; see coder result", "_next": "end_failure"}'
|
|
;;
|
|
*)
|
|
jq -nc '{"blocking_reason": "coder returned no recognizable sentinel (expected CODER_COMPLETE / CODER_REJECTED / CODER_FAILED)", "_next": "end_failure"}'
|
|
;;
|
|
esac
|