aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2023-03-07 04:17:24 -0800
committerGitHub <noreply@github.com>2023-03-07 04:17:24 -0800
commitf3e6c034d103e3476821af596a67df71d76f85a9 (patch)
treec131adf6f303563dff17149c997f61ab2d7a55c4 /.github/workflows
parentdocs: update server_configurations.md (diff)
downloadnvim-lspconfig-f3e6c034d103e3476821af596a67df71d76f85a9.tar
nvim-lspconfig-f3e6c034d103e3476821af596a67df71d76f85a9.tar.gz
nvim-lspconfig-f3e6c034d103e3476821af596a67df71d76f85a9.tar.bz2
nvim-lspconfig-f3e6c034d103e3476821af596a67df71d76f85a9.tar.lz
nvim-lspconfig-f3e6c034d103e3476821af596a67df71d76f85a9.tar.xz
nvim-lspconfig-f3e6c034d103e3476821af596a67df71d76f85a9.tar.zst
nvim-lspconfig-f3e6c034d103e3476821af596a67df71d76f85a9.zip
ci: fix config change workflow
The backticks appears to be doing process substitution.
Diffstat (limited to '.github/workflows')
-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 b1fdc17e..a6c1150c 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` directly. Edit the lua source file instead. See https://github.com/neovim/nvim-lspconfig/blob/master/CONTRIBUTING.md#generating-docs'
exit 1
fi