Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/runtime-failure-observer.agent.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .github/workflows/runtime-failure-observer.agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,14 @@ Every definition's build-list request is required. Apply rule 6 to a denied/unav

## Step 2. Walk timelines, find xharness invocations

Process one selected build completely before starting another; never parallelize requests across build ids. Before every `azdo-log` request, verify in a separate shell call that the log id belongs to that build's saved timeline:

```bash
jq -e 'any(.records[]; .log.id? == LOGID)' "/tmp/gh-aw/agent/timeline-SRCID.json"
```

If validation fails, correct the build/log pairing. Do not make the request or report missing data for that mismatched pair.

For each `source` (inline the build id in place of `SRCID`):

```bash
Expand Down