aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorRaphael <glephunter@gmail.com>2024-04-25 18:23:37 +0800
committerGitHub <noreply@github.com>2024-04-25 03:23:37 -0700
commitda338c8d7e33fbb810368a808781f56224b4fea7 (patch)
tree0ac0a12e1ea24a6032af280319ed8630498620b8 /.github/workflows
parentdocs: update README (diff)
downloadnvim-lspconfig-da338c8d7e33fbb810368a808781f56224b4fea7.tar
nvim-lspconfig-da338c8d7e33fbb810368a808781f56224b4fea7.tar.gz
nvim-lspconfig-da338c8d7e33fbb810368a808781f56224b4fea7.tar.bz2
nvim-lspconfig-da338c8d7e33fbb810368a808781f56224b4fea7.tar.lz
nvim-lspconfig-da338c8d7e33fbb810368a808781f56224b4fea7.tar.xz
nvim-lspconfig-da338c8d7e33fbb810368a808781f56224b4fea7.tar.zst
nvim-lspconfig-da338c8d7e33fbb810368a808781f56224b4fea7.zip
ci(docs): reword "check config changes" #3123
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/comment-config-changes.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/comment-config-changes.yml b/.github/workflows/comment-config-changes.yml
index 11451eb4..40bcaafa 100644
--- a/.github/workflows/comment-config-changes.yml
+++ b/.github/workflows/comment-config-changes.yml
@@ -1,7 +1,7 @@
name: "Check changes to config"
on: [pull_request_target]
jobs:
- close-changes:
+ check-config-changes:
runs-on: ubuntu-latest
permissions:
pull-requests: write
@@ -15,6 +15,5 @@ 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` 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
+ gh pr comment $PR_NUMBER --body 'Note that `server_configurations.md` or `server_configurations.txt` will be regenerated by the docgen CI process. Edit the Lua source file instead. For details on generating documentation, see: https://github.com/neovim/nvim-lspconfig/blob/master/CONTRIBUTING.md#generating-docs'
fi