Skip to content

fix(groovyls): use global executable instead of local jar #4392 #2220

fix(groovyls): use global executable instead of local jar #4392

fix(groovyls): use global executable instead of local jar #4392 #2220

Workflow file for this run

name: docgen
on:
push:
branches:
- master
jobs:
docgen:
if: github.repository == 'neovim/nvim-lspconfig'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: nightly
- name: Run docgen
run: |
scripts/docgen.lua
- name: Commit changes
env:
COMMIT_MSG: |
docs: update configs.md
skip-checks: true
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add doc/configs.md doc/configs.txt
# Only commit and push if we have changes
git diff --quiet && git diff --staged --quiet || (
git commit -m "${COMMIT_MSG}"
for i in 1 2 3; do
git pull --rebase && git push && break
echo "Push failed (attempt $i), retrying..."
sleep 5
done
)