Skip to content

chore: sync workflow templates - #608

Closed
stranske wants to merge 1 commit into
mainfrom
sync/workflows-a3e3f6fa23d5
Closed

chore: sync workflow templates#608
stranske wants to merge 1 commit into
mainfrom
sync/workflows-a3e3f6fa23d5

Conversation

@stranske

Copy link
Copy Markdown
Owner

Sync Summary

Files Updated

  • agents-81-gate-followups.yml: Gate followups hub - consolidates keepalive and autofix followups
  • agents-bot-comment-handler.yml: Bot comment handler - dispatches agents to address bot review comments (deprecated; replaced by agents-80-pr-event-hub.yml, removal no earlier than 2026-02-15)
  • agents-weekly-metrics.yml: Weekly metrics - aggregates auto-pilot, keepalive, autofix and verifier metrics into summary reports
  • aggregate_agent_metrics.py: Aggregates downloaded weekly agent metrics - required by agents-weekly-metrics.yml
  • terminal_disposition.js: Machine-readable terminal disposition records and source summaries
  • terminal_disposition_coverage.js: Warning-only terminal disposition source coverage preflight
  • bot_comment_auth_coverage.js: Warning-only bot-comment App auth coverage preflight
  • coverage_monitor_summary.js: Machine-readable weekly coverage monitor checkpoint
  • weekly_metrics_artifacts.js: Bounded weekly metrics artifact selection contract
  • weekly_metrics_download_manifest.js: Weekly metrics artifact download and extraction manifest contract
  • agents_pr_meta_update_body.js: Updates PR body with agent metadata

Files Skipped

  • pr-00-gate.yml: File exists and sync_mode is create_only
  • ci.yml: File exists and sync_mode is create_only
  • dependabot.yml: File exists and sync_mode is create_only
  • llm_slots.json: None

Review Checklist

  • CI passes with updated workflows
  • No repo-specific customizations were overwritten

Source: stranske/Workflows
Manifest: .github/sync-manifest.yml

Automated sync from stranske/Workflows
Template hash: a3e3f6fa23d5

Changes synced from sync-manifest.yml
@stranske stranske added sync Automated sync from Workflows automated Automated sync from Workflows labels Apr 26, 2026
Copilot AI review requested due to automatic review settings April 26, 2026 10:33
@stranske stranske added sync Automated sync from Workflows automated Automated sync from Workflows labels Apr 26, 2026
@agents-workflows-bot

Copy link
Copy Markdown
Contributor

⚠️ Action Required: Unable to determine source issue for PR #608. The PR title, branch name, or body must contain the issue number (e.g. #123, branch: issue-123, or the hidden marker ).

@agents-workflows-bot

agents-workflows-bot Bot commented Apr 26, 2026

Copy link
Copy Markdown
Contributor

🤖 Keepalive Loop Status

PR #608 | Agent: Codex | Iteration 0/5

Current State

Metric Value
Iteration progress [----------] 0/5
Action wait (missing-agent-label)
Disposition skipped (transient)
Gate success
Tasks 0/15 complete
Timeout 45 min (default)
Timeout usage 5m elapsed (12%, 40m remaining)
Keepalive ❌ disabled
Autofix ❌ disabled

🔍 Failure Classification

| Error type | infrastructure |
| Error category | resource |
| Suggested recovery | Confirm the referenced resource exists (repo, PR, branch, workflow, or file). |

@agents-workflows-bot

agents-workflows-bot Bot commented Apr 26, 2026

Copy link
Copy Markdown
Contributor
Keepalive Work Log (click to expand)
# Time (UTC) Agent Action Result Files Tasks Progress Commit Gate
0 2026-04-26 10:35:25 Codex wait (missing-agent-label-transient) skipped 0 0/15
0 2026-04-26 10:37:40 Codex wait (missing-agent-label-transient) skipped 0 0/15 cancelled
0 2026-04-26 10:38:27 Codex wait (missing-agent-label-transient) skipped 0 0/15 success

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Syncs updated workflow templates to improve weekly metrics aggregation, artifact download observability, and coverage/telemetry contracts for agent workflows.

Changes:

  • Extends weekly metrics aggregation to emit a JSON contract, attach artifact/source metadata, and include parse-error details (scripts/aggregate_agent_metrics.py + agents-weekly-metrics.yml).
  • Adds an artifact download manifest contract (JSON + Markdown) and records per-artifact download/unzip outcomes (weekly_metrics_download_manifest.js + workflow wiring).
  • Enhances terminal disposition + bot-comment auth coverage preflights with additional compatibility/decision signals and summary tooling (terminal_disposition*.js, bot_comment_auth_coverage.js, coverage_monitor_summary.js).

Reviewed changes

Copilot reviewed 11 out of 11 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
scripts/aggregate_agent_metrics.py Adds metric source inference, parse-error detail capture, artifact download manifest ingestion, and JSON summary contract output.
.github/workflows/agents-weekly-metrics.yml Wires in manifest generation/recording, downloads artifacts into per-artifact directories, and uploads new JSON outputs.
.github/workflows/agents-bot-comment-handler.yml Emits wrapper terminal disposition telemetry (with skip reasons) for coverage tracking.
.github/workflows/agents-81-gate-followups.yml Adjusts jq invocation to emit compact JSON.
.github/scripts/weekly_metrics_download_manifest.js New script to create/update/finalize an artifact download manifest + Markdown summary.
.github/scripts/weekly_metrics_artifacts.js Adds priority-family status reporting and missing-family signals to selection outputs/markdown.
.github/scripts/terminal_disposition_coverage.js Expands coverage contract/markdown with selection status details and verifier model compatibility checks.
.github/scripts/terminal_disposition.js Extends terminal disposition normalization to include model and verifier-mode metadata fields.
.github/scripts/coverage_monitor_summary.js New weekly “monitor-of-monitors” contract and markdown summary for coverage reports.
.github/scripts/bot_comment_auth_coverage.js Adds wrapper→reusable expectation tracking and richer missing/skipped organic requirement reporting.
.github/scripts/agents_pr_meta_update_body.js Adds issue metadata marker and Closes #... line when an issue is present.

if (parseErrors > 0) enforcementBlockers.push('parse-errors');
if (artifactSelectionWarning) enforcementBlockers.push('artifact-selection-warning');
if (verifierModelCompatibility.status !== 'pass') {
enforcementBlockers.push('unsupported-verifier-model');

Copilot AI Apr 26, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enforcementBlockers.push('unsupported-verifier-model') is triggered whenever verifierModelCompatibility.status !== 'pass', which includes both unsupported models and missing verifier model metadata. This makes the blocker label misleading and makes it harder to distinguish which condition caused enforcement to trip. Consider emitting separate blocker keys (e.g., unsupported-model vs missing-model-metadata) or a more general key that matches the underlying condition(s).

Suggested change
enforcementBlockers.push('unsupported-verifier-model');
enforcementBlockers.push('verifier-model-compatibility-warning');

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automated Automated sync from Workflows sync Automated sync from Workflows

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants