Skip to content

Commit efeb082

Browse files
committed
Add HOL skill validate workflow
1 parent 95726ad commit efeb082

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
paths:
12+
- 'SKILL.md'
13+
- 'skill.json'
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

Comments
 (0)