Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .github/workflows/integration-table.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/pandocvim.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/patch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Patch
on:
Comment thread
sgoudham marked this conversation as resolved.
workflow_dispatch:
pull_request:
branches: [main]

jobs:
docs:
name: generate vimdoc
runs-on: ubuntu-latest
permissions:
contents: write
Comment thread
comfysage marked this conversation as resolved.

steps:
- uses: actions/checkout@v5
with:
ref: ${{ github.ref }}
- name: panvimdoc
uses: kdheepak/panvimdoc@main
with:
vimdoc: catppuccin
description: "Soothing pastel theme for NeoVim"
pandoc: "README.md"
toc: true
version: "nvim >= 0.8.0"
treesitter: true
- uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: "docs: auto generate vimdoc"
branch: ${{ github.ref }}
integration-table-gen:
needs: [docs]
name: update integration table
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v5
with:
ref: ${{ github.ref }}
- name: Install Neovim
uses: MunifTanjim/setup-neovim-action@v1
- name: Update integration table
run: |
nvim -l scripts/generate_integration_mappings_table.lua
- uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: "chore: auto generate integration table"
branch: ${{ github.ref }}