fix: correct agentics import paths in workflow files#5691
Conversation
The @./agentics/ path resolved to .github/workflows/agentics/ which doesn't exist. The actual files are at .github/agentics/, so the correct import path is @./.github/agentics/. Fixes: #5659 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
This PR fixes agentic workflow prompt import paths in workflow markdown files so they resolve to the actual prompt locations under .github/agentics/, addressing the “missing data” failure reported in #5659.
Changes:
- Update workflow prompt import directives to reference
.github/agentics/...instead ofagentics/.... - Recompile the affected workflows’
.lock.ymlfiles (resulting in a gh-aw compiler/action version bump and regenerated workflow content). - Update
.github/aw/actions-lock.jsonto pingithub/gh-aw-actions/setupatv0.72.1.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/nightly-workflow-compiler.md | Updates the agent prompt import path used by the workflow markdown entrypoint. |
| .github/workflows/nightly-workflow-compiler.lock.yml | Regenerated compiled workflow; now uses newer gh-aw tooling and updated runtime scaffolding. |
| .github/workflows/large-payload-tester.md | Updates the agent prompt import path used by the workflow markdown entrypoint. |
| .github/workflows/large-payload-tester.lock.yml | Regenerated compiled workflow; now uses newer gh-aw tooling and updated runtime scaffolding. |
| .github/aw/actions-lock.json | Updates the pinned version/SHA for github/gh-aw-actions/setup. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 5/5 changed files
- Comments generated: 4
|
|
||
| <!-- Edit the file linked below to modify the agent without recompilation. Feel free to move the entire markdown body to that file. --> | ||
| @./agentics/nightly-workflow-compiler.md No newline at end of file | ||
| @./.github/agentics/nightly-workflow-compiler.md No newline at end of file |
|
|
||
| <!-- Edit the file linked below to modify the agent without recompilation. Feel free to move the entire markdown body to that file. --> | ||
| @./agentics/large-payload-tester.md No newline at end of file | ||
| @./.github/agentics/large-payload-tester.md No newline at end of file |
| # Container images used: | ||
| # - ghcr.io/github/gh-aw-firewall/agent:0.25.40@sha256:14ff567e8d9d4c2fbc5e55c973488381c71d7e0fdbe72d30ee7b8a738fd86504 | ||
| # - ghcr.io/github/gh-aw-firewall/api-proxy:0.25.40@sha256:2883ca3e5ae9f330cafdd9345bfd4ae17fc8da36c96d4c9a1f76e922b4c45280 | ||
| # - ghcr.io/github/gh-aw-firewall/squid:0.25.40@sha256:b084f4a2c771f584ee68084ced52fa6b3245197a1889645d817462d307d3ac51 | ||
| # - ghcr.io/github/gh-aw-firewall/agent:0.25.41 | ||
| # - ghcr.io/github/gh-aw-firewall/api-proxy:0.25.41 | ||
| # - ghcr.io/github/gh-aw-firewall/squid:0.25.41 |
| # Container images used: | ||
| # - ghcr.io/github/gh-aw-firewall/agent:0.25.40@sha256:14ff567e8d9d4c2fbc5e55c973488381c71d7e0fdbe72d30ee7b8a738fd86504 | ||
| # - ghcr.io/github/gh-aw-firewall/api-proxy:0.25.40@sha256:2883ca3e5ae9f330cafdd9345bfd4ae17fc8da36c96d4c9a1f76e922b4c45280 | ||
| # - ghcr.io/github/gh-aw-firewall/squid:0.25.40@sha256:b084f4a2c771f584ee68084ced52fa6b3245197a1889645d817462d307d3ac51 | ||
| # - ghcr.io/github/gh-aw-firewall/agent:0.25.41 | ||
| # - ghcr.io/github/gh-aw-firewall/api-proxy:0.25.41 | ||
| # - ghcr.io/github/gh-aw-firewall/squid:0.25.41 |
|
@copilot address review feedback |
…images - Change @./.github/agentics/ to @.github/agentics/ in both workflow .md files for consistency with other workflows (e.g. nightly-docs-reconciler.md) - Add SHA256 digest pins for gh-aw-firewall images (0.25.41) in both lock files: agent, api-proxy, squid, cli-proxy - Update actions-lock.json with 0.25.41 firewall image digests
Addressed all review feedback in commit
|
Fixes #5659
The
@./agentics/import path in workflow files resolved relative to the workflow directory (.github/workflows/), looking for.github/workflows/agentics/which doesn't exist. The actual agentics prompt files live at.github/agentics/.Fix: Update paths to
@./.github/agentics/in:large-payload-tester.mdnightly-workflow-compiler.mdBoth lock files recompiled.