Skip to content

Commit

Permalink
ci: fix version number in auto-generated vimdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser committed Jun 3, 2024
1 parent 2838211 commit c1f6489
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/panvimdoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Auto-generate vimdocs

on:
push:
branches: [main]
paths: [README.md]

permissions:
contents: write

jobs:
docs:
runs-on: ubuntu-latest
name: README.md to vimdoc
steps:
- uses: actions/checkout@v4
- uses: kdheepak/panvimdoc@main
with:
vimdoc: scissors
demojify: true
treesitter: true
version: "" # by default adds nvim 0.8 as version number…
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "chore: Auto-generate vimdocs"
branch: ${{ github.head_ref }}

0 comments on commit c1f6489

Please sign in to comment.