mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 13:45:15 -07:00
39613b6a2d
A contributor should be able to be sure their PR passes the CI before clicking "Ready for review".
19 lines
365 B
YAML
19 lines
365 B
YAML
name: Missing API docs
|
|
on:
|
|
pull_request:
|
|
branches-ignore:
|
|
- 'marvim/api-doc-update**'
|
|
paths:
|
|
- 'src/nvim/api/*.[ch]'
|
|
- 'runtime/lua/**.lua'
|
|
- 'runtime/doc/**'
|
|
|
|
jobs:
|
|
call-regen-api-docs:
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
uses: ./.github/workflows/api-docs.yml
|
|
with:
|
|
check_only: true
|