-
-
Notifications
You must be signed in to change notification settings - Fork 328
48 lines (45 loc) · 1.22 KB
/
patch.yml
File metadata and controls
48 lines (45 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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"