Skip to content

chore: sync workflow templates - #842

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

stranske wants to merge 1 commit into
mainfrom
sync/workflows-8c7e6f62db72

Conversation

@stranske

Copy link
Copy Markdown
Owner

Sync Summary

Files Updated

  • agents-weekly-metrics.yml: Weekly metrics - aggregates auto-pilot, keepalive, autofix and verifier metrics into summary reports
  • bot_comment_auth_coverage.js: Warning-only bot-comment App auth coverage preflight
  • weekly_metrics_artifacts.js: Bounded weekly metrics artifact selection contract

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: 8c7e6f62db72

Changes synced from sync-manifest.yml
@stranske stranske added sync Automated sync from Workflows automated Automated sync from Workflows labels Apr 25, 2026
Copilot AI review requested due to automatic review settings April 25, 2026 16:43
@stranske stranske added sync Automated sync from Workflows automated Automated sync from Workflows labels Apr 25, 2026
@stranske-keepalive

Copy link
Copy Markdown
Contributor

⚠️ Action Required: Unable to determine source issue for PR #842. 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 25, 2026

Copy link
Copy Markdown
Contributor

🤖 Keepalive Loop Status

PR #842 | 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/7 complete
Timeout 45 min (default)
Timeout usage 6m elapsed (13%, 39m 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 25, 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-25 16:44:55 Codex wait (missing-agent-label-transient) skipped 0 0/7 cancelled
0 2026-04-25 16:47:43 Codex wait (missing-agent-label-transient) skipped 0 0/7 cancelled
0 2026-04-25 16:48:56 Codex wait (missing-agent-label-transient) skipped 0 0/7 cancelled
0 2026-04-25 16:49:28 Codex wait (missing-agent-label-transient) skipped 0 0/7 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 workflow templates from stranske/Workflows by extending the weekly metrics workflow to include a new “bot-comment App auth coverage” preflight, plus updating artifact selection logic to pick up the new metrics artifacts.

Changes:

  • Add a bot-comment auth coverage preflight step to the weekly metrics workflow and upload its summary artifacts.
  • Extend weekly metrics artifact selection to recognize bot-comment auth coverage artifact families.
  • Introduce .github/scripts/bot_comment_auth_coverage.js to summarize bot-comment auth coverage and produce JSON/Markdown reports.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.

File Description
.github/workflows/agents-weekly-metrics.yml Runs the new bot-comment auth coverage preflight and enforces coverage hard-block exit behavior.
.github/scripts/weekly_metrics_artifacts.js Adds bot-comment auth coverage artifact prefixes/families to weekly selection logic.
.github/scripts/bot_comment_auth_coverage.js New summarizer that reads auth coverage JSON records and emits a coverage summary + markdown.

run: |
terminal_status="${TERMINAL_DISPOSITION_COVERAGE_EXIT_STATUS:-0}"
bot_comment_auth_status="${BOT_COMMENT_AUTH_COVERAGE_EXIT_STATUS:-0}"
if [ "${terminal_status}" != "0" ] || [ "${bot_comment_auth_status}" != "0" ]; then

Copilot AI Apr 25, 2026

Copy link

Choose a reason for hiding this comment

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

The hard-block step exits with status 1 but doesn’t print which gate(s) failed or the captured exit codes. Emitting a brief message (e.g., echo the terminal/bot-comment status values and which one triggered the failure) would make scheduled-run failures much easier to triage from logs.

Suggested change
if [ "${terminal_status}" != "0" ] || [ "${bot_comment_auth_status}" != "0" ]; then
if [ "${terminal_status}" != "0" ] || [ "${bot_comment_auth_status}" != "0" ]; then
echo "Coverage hard-block triggered: terminal_disposition=${terminal_status}, bot_comment_auth=${bot_comment_auth_status}"
if [ "${terminal_status}" != "0" ] && [ "${bot_comment_auth_status}" != "0" ]; then
echo "Failing gates: review-thread terminal coverage and bot-comment auth coverage"
elif [ "${terminal_status}" != "0" ]; then
echo "Failing gate: review-thread terminal coverage"
else
echo "Failing gate: bot-comment auth coverage"
fi

Copilot uses AI. Check for mistakes.
Comment on lines +235 to +238
const blockers = [];
if (!latest) {
blockers.push(`missing-${component}`);
} else {

Copilot AI Apr 25, 2026

Copy link

Choose a reason for hiding this comment

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

missing_record_severity: 'no-data' is not respected in the overall coverage status: when a component has no latest record you always add a missing-* blocker (line 237), and later coverageStatus becomes warning whenever blockers.length > 0 (line 278), even if the only issues are missing components marked as no-data. Consider only adding missing-* to the global blockers when the component policy treats missing data as a warning/failure, or track missing-no-data separately so overall status can remain no-data/pass as intended.

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