mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-14 15:16:35 +03:00
Use tesslio/skill-review to run tessl skill review on changed skills and post results on the PR. No Tessl account required; only GITHUB_TOKEN. Made-with: Cursor Co-authored-by: rohan-tessl <rohan-tessl@users.noreply.github.com>
21 lines
476 B
YAML
21 lines
476 B
YAML
# Runs Tessl skill review on pull requests that touch any SKILL.md.
|
|
# Posts (or updates) a single PR comment with scores and feedback.
|
|
# See: https://github.com/tesslio/skill-review
|
|
name: Tessl Skill Review
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
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
|