From ae0c28eeee80bddc40623cd4e4c2bca145752ff7 Mon Sep 17 00:00:00 2001 From: Alan Pope Date: Mon, 30 Mar 2026 11:17:14 +0100 Subject: [PATCH] ci: add automated skill review for SKILL.md pull requests Adds a lightweight GitHub Action that reviews any SKILL.md files changed in a pull request using tessl skill review. Posts results as a PR comment with minimal permissions (pull-requests: write, contents: read). 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