Skip to content

Commit 7ba92ee

Browse files
committed
ci: add Tessl skill review workflow for SKILL.md PRs
1 parent 97f8269 commit 7ba92ee

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/skill-review.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Tessl Skill Review — runs on PRs that change any SKILL.md; posts scores as one PR comment.
2+
# Docs: https://github.com/tesslio/skill-review
3+
name: Tessl Skill Review
4+
5+
on:
6+
pull_request:
7+
branches: [main]
8+
paths:
9+
- "**/SKILL.md"
10+
11+
jobs:
12+
review:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
pull-requests: write
16+
contents: read
17+
steps:
18+
- uses: actions/checkout@v4
19+
- uses: tesslio/skill-review@main
20+
# Optional quality gate (off by default — do not enable unless user asked):
21+
# with:
22+
# fail-threshold: 70

0 commit comments

Comments
 (0)