We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95726ad commit efeb082Copy full SHA for efeb082
.github/workflows/validate-skill.yml
@@ -0,0 +1,32 @@
1
+name: Validate Skill
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - 'SKILL.md'
7
+ - 'skill.json'
8
+ push:
9
+ branches:
10
+ - main
11
12
13
14
+ workflow_dispatch:
15
16
+jobs:
17
+ validate:
18
+ name: Validate skill definition
19
+ runs-on: ubuntu-latest
20
+ timeout-minutes: 10
21
+ permissions:
22
+ contents: read
23
+ id-token: write
24
+ steps:
25
+ - name: Checkout repository
26
+ uses: actions/checkout@v4
27
28
+ - name: Validate skill
29
+ uses: hashgraph-online/skill-publish@v1
30
+ with:
31
+ mode: validate
32
+ skill-dir: .
0 commit comments