diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-11-09 10:26:37 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-09 10:26:37 -0800 |
| commit | d1dd1a6675b18d8e863bae425314fcf54f0616f3 (patch) | |
| tree | df97404fe088673792916f7c1e0dd743abba8a05 /.github | |
| parent | docs: documentation overhaul (#1384) (diff) | |
| download | nvim-lspconfig-d1dd1a6675b18d8e863bae425314fcf54f0616f3.tar nvim-lspconfig-d1dd1a6675b18d8e863bae425314fcf54f0616f3.tar.gz nvim-lspconfig-d1dd1a6675b18d8e863bae425314fcf54f0616f3.tar.bz2 nvim-lspconfig-d1dd1a6675b18d8e863bae425314fcf54f0616f3.tar.lz nvim-lspconfig-d1dd1a6675b18d8e863bae425314fcf54f0616f3.tar.xz nvim-lspconfig-d1dd1a6675b18d8e863bae425314fcf54f0616f3.tar.zst nvim-lspconfig-d1dd1a6675b18d8e863bae425314fcf54f0616f3.zip | |
docs: follow-up fixes from overhaul (#1389)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/codespell.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/docgen.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 0cf18520..7a6cfe13 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -18,4 +18,4 @@ jobs: pip install codespell - name: Use codespell run: | - codespell --quiet-level=2 --check-hidden --skip=CONFIG.md --ignore-words=.codespellignorewords || exit + codespell --quiet-level=2 --check-hidden --skip=./doc/server_configurations.md --ignore-words=.codespellignorewords || exit diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml index a6c3bd55..b7c123a2 100644 --- a/.github/workflows/docgen.yml +++ b/.github/workflows/docgen.yml @@ -22,11 +22,11 @@ jobs: - name: Commit changes env: COMMIT_MSG: | - docs: update CONFIG.md + docs: update server_configurations.md skip-checks: true run: | git config user.name github-actions git config user.email github-actions@github.com - git add CONFIG.md + git add doc/server_configurations.md # Only commit and push if we have changes git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push) |
