From 1f29dd94d1af0bd0293f7b66df110fe9662d0504 Mon Sep 17 00:00:00 2001 From: Alan Pope Date: Mon, 30 Mar 2026 11:27:04 +0100 Subject: [PATCH] ci: add automated skill review for SKILL.md pull requests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hullo! Thanks for merging the skill improvements earlier. This is a follow-up that adds a lightweight GitHub Action to automatically review any `SKILL.md` files when they're changed in a PR, using tessl skill review. - Triggers only on PRs that touch **/SKILL.md - Posts review results as a PR comment - Minimal permissions: pull-requests: write and contents: read This way you and your contributors get an instant quality signal on skill changes before manual review — no signup or tokens needed. Signed-off-by: Alan Pope --- .github/workflows/skill-review.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/skill-review.yml diff --git a/.github/workflows/skill-review.yml b/.github/workflows/skill-review.yml new file mode 100644 index 0000000..53cfee6 --- /dev/null +++ b/.github/workflows/skill-review.yml @@ -0,0 +1,14 @@ +name: Skill Review +on: + pull_request: + paths: ['**/SKILL.md'] + +jobs: + review: + runs-on: ubuntu-latest + permissions: + pull-requests: write + contents: read + steps: + - uses: actions/checkout@v4 + - uses: tesslio/skill-review@main