mirror of https://github.com/tiyn/tidy.nvim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
840 B
31 lines
840 B
name: CI
|
|
on:
|
|
push:
|
|
paths:
|
|
- "README.md"
|
|
pull_request:
|
|
paths:
|
|
- "README.md"
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.ref == 'refs/heads/main' }}
|
|
name: pandoc markdown to vimdoc
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: panvimdoc
|
|
uses: kdheepak/panvimdoc@main
|
|
with:
|
|
vimdoc: tidy.nvim
|
|
version: "Neovim >= 0.9.0"
|
|
demojify: true
|
|
treesitter: true
|
|
- name: Push changes
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "chore(build): auto-generate vimdoc"
|
|
commit_user_name: "github-actions[bot]"
|
|
commit_user_email: "github-actions[bot]@users.noreply.github.com"
|
|
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
|