orgmode-babel.nvim/.github/workflows/panvimdoc.yml
Workflow config file is invalid. Please check your config file: yaml: line 24: mapping values are not allowed in this context
marshmallow ece3e3f540
add vimdoc action
nessisary since README is in org
2023-06-25 16:55:41 +10:00

27 lines
666 B
YAML

name: panvimdoc
on: [push]
jobs:
docs:
runs-on: ubuntu-latest
name: pandoc to vimdoc
steps:
- uses: actions/checkout@v2
- uses: docker://pandoc/core
with:
args: "--output README.md README.org"
- name: panvimdoc
uses: kdheepak/panvimdoc@main
with:
vimdoc: orgmode-babel.nvim
# The following are all optional
pandoc: "README.md"
version: "NVIM v0.10.0"
toc: true
treesitter: true
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Auto generate docs"
branch: ${{ github.head_ref }}