-
Notifications
You must be signed in to change notification settings - Fork 252
Open
Labels
Description
Problem
The workflow lock files (.lock.yml) are out of sync with their source markdown files (.md). This means the workflows that run in GitHub Actions are not using the latest configuration.
What needs to be done
The workflows need to be recompiled to regenerate the lock files from the markdown sources.
Instructions
Recompile all workflows using one of the following methods:
Using gh aw CLI
gh aw compile --validate --verboseUsing gh-aw MCP Server
If you have the gh-aw MCP server configured, use the compile tool:
{
"tool": "compile",
"arguments": {
"validate": true,
"verbose": true
}
}This will:
- Build the latest version of
gh-aw - Compile all workflow markdown files to YAML lock files
- Ensure all workflows are up to date
After recompiling, commit the changes with a message like:
Recompile workflows to update lock files
Detected Changes
The following workflow lock files have changes:
View diff
diff --git a/.github/workflows/smoke-macos-arm64.lock.yml b/.github/workflows/smoke-macos-arm64.lock.yml
index 59da5bf..959e04a 100644
--- a/.github/workflows/smoke-macos-arm64.lock.yml
+++ b/.github/workflows/smoke-macos-arm64.lock.yml
@@ -1689,7 +1689,7 @@ jobs:
setupGlobals(core, github, context, exec, io);
const { main } = require('/opt/gh-aw/actions/parse_copilot_log.cjs');
await main();
- - name: Parse safe-inputs logs for step summary
+ - name: Parse Safe Inputs logs for step summary
if: always()
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
with:
@@ -1904,7 +1904,7 @@ jobs:
with:
name: agent-output
path: /tmp/gh-aw/threat-detection/
- - name: Echo agent output types
+ - name: Print agent output types
env:
AGENT_OUTPUT_TYPES: ${{ needs.agent.outputs.output_types }}
run: |
References
- Repository: github/gh-aw
Generated by Agentic Maintenance
Reactions are currently unavailable