Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Jan 18, 2026

The workflow lock files (.lock.yml) were out of sync with their markdown source files, causing GitHub Actions to run with stale configurations.

Changes

  • Recompiled 130 workflow lock files via make recompile
  • Standardized action version tags from # v8 to # v8.0.0 format for clarity
  • Removed orphaned lock file campaign-generator.lock.yml (no corresponding markdown source)

Example change in action references:

# Before
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8

# After  
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0

All workflows now reflect their current markdown configurations.

Original prompt

This section details on the original issue you should resolve

<issue_title>[agentics] agentic workflows out of sync</issue_title>
<issue_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 --verbose

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

  1. Build the latest version of gh-aw
  2. Compile all workflow markdown files to YAML lock files
  3. 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/daily-team-status.lock.yml b/.github/workflows/daily-team-status.lock.yml
index 58b11e3..c542813 100644
--- a/.github/workflows/daily-team-status.lock.yml
+++ b/.github/workflows/daily-team-status.lock.yml
@@ -173,7 +173,7 @@ jobs:
         env:
           TOKEN_CHECK: ${{ secrets.GH_AW_GITHUB_MCP_SERVER_TOKEN }}
         if: env.TOKEN_CHECK != ''
-        uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
+        uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
         with:
           script: |
             const determineAutomaticLockdown = require('/opt/gh-aw/actions/determine_automatic_lockdown.cjs');

References

  • Repository: githubnext/gh-aw

Ahoy! This treasure was crafted by 🏴‍☠️ Agentic Maintenance

</issue_description>

Comments on the Issue (you are @copilot in this section)


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Copilot AI and others added 2 commits January 18, 2026 21:58
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Copilot AI changed the title [WIP] Recompile workflows to sync lock files Recompile workflows to sync lock files with markdown sources Jan 18, 2026
Copilot AI requested a review from mnkiefer January 18, 2026 22:02
@pelikhan pelikhan marked this pull request as ready for review January 18, 2026 23:37
@pelikhan pelikhan closed this Jan 18, 2026
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.

[agentics] agentic workflows out of sync

3 participants