Skip to content

Commit c1f6489

Browse files
committed
ci: fix version number in auto-generated vimdoc
1 parent 2838211 commit c1f6489

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/panvimdoc.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
25+
commit_message: "chore: Auto-generate vimdocs"
26+
branch: ${{ github.head_ref }}

0 commit comments

Comments
 (0)