From b411c3d0515bd60d306741b832df75f235ba8314 Mon Sep 17 00:00:00 2001 From: ojfbot <151410806+ojfbot@users.noreply.github.com> Date: Mon, 4 May 2026 23:38:35 -0500 Subject: [PATCH] feat: use shared skill-audit action from ojfbot/github-actions@v1 Replaces inlined skill-audit workflow with a single composite-action invocation. Fixes the 'Skill audit skipped' issue (script previously came from core via gitignored symlinks). See ADR-0067. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/claude-skill-audit.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/claude-skill-audit.yml diff --git a/.github/workflows/claude-skill-audit.yml b/.github/workflows/claude-skill-audit.yml new file mode 100644 index 0000000..4df9e48 --- /dev/null +++ b/.github/workflows/claude-skill-audit.yml @@ -0,0 +1,17 @@ +name: Skill Audit + +on: + pull_request: + types: [opened, synchronize] + +jobs: + skill-audit: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 1 + - uses: ojfbot/github-actions/skill-audit@v1