Skip to content

chore: sync workflow templates#753

Merged
stranske merged 1 commit intomainfrom
sync/workflows-fc69344fa9aa
Mar 9, 2026
Merged

chore: sync workflow templates#753
stranske merged 1 commit intomainfrom
sync/workflows-fc69344fa9aa

Conversation

@stranske
Copy link
Copy Markdown
Owner

@stranske stranske commented Mar 9, 2026

Sync Summary

Files Updated

  • agents_verifier_context.js: Context gathering for agent verifier
  • pr_verifier.py: PR verifier - validates PR changes against acceptance criteria

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: fc69344fa9aa

Changes synced from sync-manifest.yml
Copilot AI review requested due to automatic review settings March 9, 2026 01:24
@stranske stranske added sync Automated sync from Workflows automated Automated sync from Workflows labels Mar 9, 2026
@stranske stranske temporarily deployed to agent-standard March 9, 2026 01:24 — with GitHub Actions Inactive
@stranske stranske temporarily deployed to agent-standard March 9, 2026 01:24 — with GitHub Actions Inactive
@agents-workflows-bot
Copy link
Copy Markdown
Contributor

⚠️ Action Required: Unable to determine source issue for PR #753. 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
Copy link
Copy Markdown
Contributor

agents-workflows-bot bot commented Mar 9, 2026

🤖 Keepalive Loop Status

PR #753 | 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/6 complete
Timeout 45 min (default)
Timeout usage 6m elapsed (14%, 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
Copy link
Copy Markdown
Contributor

agents-workflows-bot bot commented Mar 9, 2026

Keepalive Work Log (click to expand)
# Time (UTC) Agent Action Result Files Tasks Progress Commit Gate
0 2026-03-09 01:26:43 Codex wait (missing-agent-label-transient) skipped 0 0/6 cancelled
0 2026-03-09 01:28:15 Codex wait (missing-agent-label-transient) skipped 0 0/6 cancelled
0 2026-03-09 01:29:18 Codex wait (missing-agent-label-transient) skipped 0 0/6 cancelled
0 2026-03-09 01:30:53 Codex wait (missing-agent-label-transient) skipped 0 0/6 success

@stranske stranske merged commit 69b319f into main Mar 9, 2026
112 of 124 checks passed
@stranske stranske deleted the sync/workflows-fc69344fa9aa branch March 9, 2026 01:28
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

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-template changes from the central Workflows repo, refining how the verifier identifies “follow-up” iterations and how the PR verification prompt instructs the LLM to scope its evaluation for chained/follow-up PRs.

Changes:

  • Expanded follow-up PR evaluation guidance in scripts/langchain/pr_verifier.py (prompt addendum for chained iterations).
  • Broadened chain-depth detection heuristics in .github/scripts/agents_verifier_context.js beyond the follow-up label to also consider title/body signals.

Reviewed changes

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

File Description
scripts/langchain/pr_verifier.py Adds additional chain-depth prompt guidance to keep follow-up evaluations focused on the targeted verifier concerns.
.github/scripts/agents_verifier_context.js Enhances follow-up chain-depth detection by checking label/title/body signals on linked issues.

You can also share your feedback on Copilot code review. Take the survey.

if (issue.labels && issue.labels.some((l) => l.name === 'follow-up')) {
const hasFollowupLabel = issue.labels && issue.labels.some((l) => l.name === 'follow-up');
const hasFollowupTitle = /follow-?up/i.test(String(issue.title || ''));
const hasSourceRef = /source\s+(issue|pr)\s*:\s*#\d+/i.test(String(issue.body || ''));
Copy link

Copilot AI Mar 9, 2026

Choose a reason for hiding this comment

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

hasSourceRef is unlikely to ever match the repo’s existing “Source” markers (e.g. > **Source:** Issue #384), since the regex requires the literal pattern source issue: or source pr:. As a result, this new follow-up detection signal will be ineffective. Consider updating the regex to also match the current **Source:** (Issue|PR) #<n> formatting (and any other formats you expect).

Suggested change
const hasSourceRef = /source\s+(issue|pr)\s*:\s*#\d+/i.test(String(issue.body || ''));
const hasSourceRef =
/(?:source\s+(issue|pr)\s*:\s*#\d+|\*\*source:\*\*\s*(issue|pr)\s*#\d+)/i.test(
String(issue.body || ''),
);

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