We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2838211 commit c1f6489Copy full SHA for c1f6489
.github/workflows/panvimdoc.yml
@@ -0,0 +1,26 @@
1
+name: Auto-generate vimdocs
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ paths: [README.md]
7
8
+permissions:
9
+ contents: write
10
11
+jobs:
12
+ docs:
13
+ runs-on: ubuntu-latest
14
+ name: README.md to vimdoc
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: kdheepak/panvimdoc@main
18
+ with:
19
+ vimdoc: scissors
20
+ demojify: true
21
+ treesitter: true
22
+ version: "" # by default adds nvim 0.8 as version number…
23
+ - uses: stefanzweifel/git-auto-commit-action@v4
24
25
+ commit_message: "chore: Auto-generate vimdocs"
26
+ branch: ${{ github.head_ref }}
0 commit comments