Skip to content

Refresh agentic workflows to gh-aw v0.83.1; issue-intent on issue-triage #94

Refresh agentic workflows to gh-aw v0.83.1; issue-intent on issue-triage

Refresh agentic workflows to gh-aw v0.83.1; issue-intent on issue-triage #94

Workflow file for this run

name: Verify compiled workflows
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- ".github/workflows/*.md"
- ".github/workflows/*.lock.yml"
permissions:
contents: read
jobs:
verify:
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install gh-aw CLI
uses: github/gh-aw-actions/setup-cli@34802437a0cba2fd1352d1f1bb02c18a78b56b31 # v0.83.0
with:
version: v0.83.0
- name: Recompile workflows
run: gh aw compile issue-triage
- name: Check for uncommitted changes
run: |
if [ -n "$(git diff)" ]; then
echo "::error::Lock files are out of date. Run 'gh aw compile' and commit the results."
echo ""
git diff --stat
echo ""
git diff -- '*.lock.yml'
exit 1
fi
echo "All lock files are up to date."