Skip to content

fix: check if auto_integrations was explicitly disabled #140

fix: check if auto_integrations was explicitly disabled

fix: check if auto_integrations was explicitly disabled #140

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@v6
with:
ref: ${{ github.head_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"
integration-table-gen:
needs: [docs]
name: update integration table
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.head_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"