aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-02-24 13:44:39 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-02-24 13:49:09 +0100
commitb22610cc7ceb513396adb8e648abb1d1613b2a82 (patch)
tree12a7618a96294363f4daab7ed6ce0a4eaee2ce61 /.github
parentdocs: update server_configurations.md (diff)
downloadnvim-lspconfig-b22610cc7ceb513396adb8e648abb1d1613b2a82.tar
nvim-lspconfig-b22610cc7ceb513396adb8e648abb1d1613b2a82.tar.gz
nvim-lspconfig-b22610cc7ceb513396adb8e648abb1d1613b2a82.tar.bz2
nvim-lspconfig-b22610cc7ceb513396adb8e648abb1d1613b2a82.tar.lz
nvim-lspconfig-b22610cc7ceb513396adb8e648abb1d1613b2a82.tar.xz
nvim-lspconfig-b22610cc7ceb513396adb8e648abb1d1613b2a82.tar.zst
nvim-lspconfig-b22610cc7ceb513396adb8e648abb1d1613b2a82.zip
ci: clarify misleading comment from bot
The job `comment-config-changes.yml` fails if either `doc/server_configurations.md` or `doc/server_configurations.txt`, but the comment never mentions not to change `doc/server_configurations.txt`.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/comment-config-changes.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/comment-config-changes.yml b/.github/workflows/comment-config-changes.yml
index 2e907e8d..11451eb4 100644
--- a/.github/workflows/comment-config-changes.yml
+++ b/.github/workflows/comment-config-changes.yml
@@ -15,6 +15,6 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
- run: |
if ! git diff origin/$GITHUB_BASE_REF...$(git branch --show-current) --exit-code -- doc/server_configurations.md doc/server_configurations.txt; then
- gh pr comment $PR_NUMBER --body 'Do not change `server_configurations.md` directly. Edit the lua source file instead. See https://github.com/neovim/nvim-lspconfig/blob/master/CONTRIBUTING.md#generating-docs'
+ gh pr comment $PR_NUMBER --body 'Do not change `server_configurations.md` or `server_configurations.txt` directly as these are automatically generated. Edit the lua source file instead. See https://github.com/neovim/nvim-lspconfig/blob/master/CONTRIBUTING.md#generating-docs'
exit 1
fi