Skip to content

Commit 72666a6

Browse files
ci: add workflow for help file
1 parent e0826fb commit 72666a6

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Generate help file"
2+
on:
3+
push:
4+
branches:
5+
- "main"
6+
paths:
7+
- "README.md"
8+
- ".github/workflows/generate-help-file.yaml"
9+
jobs:
10+
docs:
11+
runs-on: "ubuntu-latest"
12+
permissions:
13+
contents: "write"
14+
steps:
15+
- name: "Checkout"
16+
uses: "actions/checkout@v4"
17+
- name: "Convert README to help file"
18+
uses: "kdheepak/[email protected]"
19+
with:
20+
vimdoc: "codecompanion-spinner"
21+
demojify: true
22+
shiftheadinglevelby: -1
23+
- name: "Commit help file"
24+
uses: "stefanzweifel/git-auto-commit-action@v5"
25+
with:
26+
commit_message: "docs: update help file"

0 commit comments

Comments
 (0)