30 lines
728 B
YAML
30 lines
728 B
YAML
name: Auto-generate vimdocs
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- README.md # source file
|
|
- .github/workflows/panvimdoc.yml # updates to this file itself
|
|
workflow_dispatch:
|
|
|
|
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: genghis
|
|
demojify: true
|
|
treesitter: true
|
|
description: " Auto-generated from README.md. Do not make PRs to this file."
|
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: "chore: auto-generate vimdocs"
|
|
branch: ${{ github.head_ref }}
|