blob: 8ae6e6ff92a08ff356134ea59bfe4f4fce64edc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
name: Missing API docs
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches-ignore:
- 'marvim/api-doc-update**'
paths:
- 'src/nvim/api/*.[ch]'
- 'src/nvim/**.lua'
- 'runtime/lua/**.lua'
jobs:
call-regen-api-docs:
if: github.event.pull_request.draft == false
uses: ./.github/workflows/api-docs.yml
with:
check_only: true
|