Skip to content

Fix engine failure message: include engine ID and use blob URL for workflow source#23703

Merged
pelikhan merged 1 commit intomainfrom
copilot/update-ai-engine-failure-message
Mar 31, 2026
Merged

Fix engine failure message: include engine ID and use blob URL for workflow source#23703
pelikhan merged 1 commit intomainfrom
copilot/update-ai-engine-failure-message

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Mar 31, 2026

Failure issues didn't identify which AI engine terminated, and the workflow source link pointed to a directory tree view instead of the rendered file.

Changes

  • buildSourceURL(): Changed /tree//blob/ so the workflow link opens the rendered markdown file
  • notify_comment.go: Pass GH_AW_ENGINE_ID env var to the conclusion job's Handle Agent Failure step (alongside the existing safe_outputs job)
  • buildEngineFailureContext(): Reads GH_AW_ENGINE_ID and injects it into the failure message; falls back to "AI engine" when unset

Before:

**⚠️ Engine Failure**: The AI engine terminated before producing output.
**Workflow:** [My Workflow](https://github.com/org/repo/tree/main/workflows/my-workflow.md)

After:

**⚠️ Engine Failure**: The `copilot` engine terminated before producing output.
**Workflow:** [My Workflow](https://github.com/org/repo/blob/main/workflows/my-workflow.md)

All 178 lock files recompiled with updated URLs and GH_AW_ENGINE_ID in conclusion jobs.

…kflow source (#23682)

- buildSourceURL() now generates /blob/ URLs (rendered file view) instead of /tree/ (directory listing)
- GH_AW_ENGINE_ID is now passed to the conclusion job's agent failure handler
- buildEngineFailureContext() reads GH_AW_ENGINE_ID and includes engine name in failure messages
- Lock files recompiled with new /blob/ URLs and GH_AW_ENGINE_ID env vars
- Tests updated for all changes

Agent-Logs-Url: https://github.com/github/gh-aw/sessions/986c001d-47ef-46bb-ac65-080247eb5f79

Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
@pelikhan pelikhan marked this pull request as ready for review March 31, 2026 12:48
Copilot AI review requested due to automatic review settings March 31, 2026 12:48
@pelikhan pelikhan merged commit 9561231 into main Mar 31, 2026
144 checks passed
@pelikhan pelikhan deleted the copilot/update-ai-engine-failure-message branch March 31, 2026 12:53
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

This PR improves failure diagnostics and workflow traceability by (1) making workflow source links open the rendered markdown file and (2) including the AI engine ID in engine-termination failure messages.

Changes:

  • Update buildSourceURL() to generate GitHub /blob/ links (rendered view) instead of /tree/.
  • Pass GH_AW_ENGINE_ID into the conclusion job’s “Handle Agent Failure” step and include it in buildEngineFailureContext() output (with tests).
  • Recompile workflow lockfiles to reflect updated source URLs and the new GH_AW_ENGINE_ID env var.

Reviewed changes

Copilot reviewed 177 out of 177 changed files in this pull request and generated no comments.

Show a summary per file
File Description
pkg/workflow/safe_output_helpers_test.go Updates expectations for workflow source URLs to use /blob/.
pkg/workflow/notify_comment.go Adds GH_AW_ENGINE_ID to env passed into the conclusion job failure handler.
pkg/workflow/frontmatter_extraction_metadata.go Switches workflow source URL construction from /tree/ to /blob/ and clarifies behavior in comments.
actions/setup/js/handle_agent_failure.test.cjs Adds test coverage for engine ID inclusion (set/unset) in engine failure context.
actions/setup/js/handle_agent_failure.cjs Includes GH_AW_ENGINE_ID in engine failure messages (error-pattern and fallback paths).
.github/workflows/workflow-skill-extractor.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/workflow-normalizer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/workflow-health-manager.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/workflow-generator.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/weekly-safe-outputs-spec-review.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/weekly-issue-summary.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/weekly-editors-health-check.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/weekly-blog-post-writer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/video-analyzer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/update-astro.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/unbloat-docs.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/ubuntu-image-analyzer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/typist.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/tidy.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/test-project-url-default.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/test-dispatcher.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/test-create-pr-error-handling.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/terminal-stylist.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/technical-doc-writer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/super-linter.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/sub-issue-closer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/step-name-alignment.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/static-analysis-report.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/stale-repo-identifier.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-workflow-call.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-workflow-call-with-inputs.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-update-cross-repo-pr.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-test-tools.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-temporary-id.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-project.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-multi-pr.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-gemini.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-create-cross-repo-pr.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-copilot.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-copilot-arm.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-codex.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-claude.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-call-workflow.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-agent-scoped-approved.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-agent-public-none.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-agent-public-approved.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-agent-all-none.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/smoke-agent-all-merged.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/slide-deck-maintainer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/sergo.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/semantic-function-refactor.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/security-review.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/security-compliance.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/scout.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/schema-feature-coverage.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/schema-consistency-checker.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/safe-output-health.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/research.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/repository-quality-improver.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/repo-tree-map.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/repo-audit-analyzer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/release.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/refiner.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/q.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/python-data-charts.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/prompt-clustering-analysis.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/pr-triage-agent.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/pr-nitpick-reviewer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/portfolio-analyst.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/poem-bot.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/plan.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/pdf-summary.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/org-health-report.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/notion-issue-summary.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/mergefest.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/mcp-inspector.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/lockfile-stats.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/layout-spec-maintainer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/jsweep.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/issue-triage-agent.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/issue-monster.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/issue-arborist.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/instructions-janitor.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/hourly-ci-cleaner.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/grumpy-reviewer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/gpclean.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/go-pattern-detector.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/go-logger.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/go-fan.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/glossary-maintainer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/github-remote-mcp-auth-test.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/github-mcp-tools-report.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/github-mcp-structural-analysis.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/functional-pragmatist.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/firewall-escape.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/example-workflow-analyzer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/duplicate-code-detector.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/draft-pr-cleanup.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/docs-noob-tester.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/discussion-task-miner.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/dictation-prompt.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/developer-docs-consolidator.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/dev.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/dev-hawk.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/dependabot-go-checker.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/dependabot-burner.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/delight.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/deep-report.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/dead-code-remover.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-workflow-updater.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-testify-uber-super-expert.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-team-status.lock.yml Recompiled lockfile: updates workflow source URLs to /blob/ and adds GH_AW_ENGINE_ID.
.github/workflows/daily-team-evolution-insights.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-syntax-error-quality.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-semgrep-scan.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-security-red-team.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-secrets-analysis.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-safe-outputs-conformance.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-safe-output-optimizer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-safe-output-integrator.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-repo-chronicle.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-rendering-scripts-verifier.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-regulatory.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-performance-summary.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-observability-report.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-news.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-multi-device-docs-tester.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-mcp-concurrency-analysis.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-malicious-code-scan.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-issues-report.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-integrity-analysis.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-function-namer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-firewall-report.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-file-diet.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-fact.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-doc-updater.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-doc-healer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-copilot-token-report.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-compiler-quality.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-community-attribution.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-code-metrics.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-cli-tools-tester.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-cli-performance.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-choice-test.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-assign-issue-to-user.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/daily-architecture-diagram.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/craft.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/copilot-session-insights.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/copilot-pr-prompt-analysis.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/copilot-pr-nlp-analysis.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/copilot-pr-merged-report.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/copilot-cli-deep-research.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/copilot-agent-analysis.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/contribution-check.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/constraint-solving-potd.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/commit-changes-analyzer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/code-simplifier.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/code-scanning-fixer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/cloclo.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/cli-version-checker.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/cli-consistency-checker.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/claude-code-user-docs-review.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/ci-doctor.lock.yml Recompiled lockfile: updates workflow source URLs to /blob/ and adds GH_AW_ENGINE_ID.
.github/workflows/ci-coach.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/changeset.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/breaking-change-checker.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/brave.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/bot-detection.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/blog-auditor.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/auto-triage-issues.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/audit-workflows.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/artifacts-summary.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/archie.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/ai-moderator.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/agentic-observability-kit.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/agent-persona-explorer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.
.github/workflows/agent-performance-analyzer.lock.yml Recompiled lockfile: adds GH_AW_ENGINE_ID and updates workflow source URLs to /blob/ where applicable.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants