We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97f8269 commit 7ba92eeCopy full SHA for 7ba92ee
.github/workflows/skill-review.yml
@@ -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