We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0826fb commit 72666a6Copy full SHA for 72666a6
1 file changed
.github/workflows/generate-help-file.yaml
@@ -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
26
+ commit_message: "docs: update help file"
0 commit comments