Skip to content

feat: add blink.pairs integration #24

feat: add blink.pairs integration

feat: add blink.pairs integration #24

Workflow file for this run

name: Patch
on:
workflow_dispatch:
pull_request:
branches: [main]
jobs:
docs:
name: generate vimdoc
runs-on: ubuntu-latest
permissions:
contents: write
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@v7
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@v7
with:
commit_message: "chore: auto generate integration table"
branch: ${{ github.ref }}