diff options
| author | figsoda <figsoda@pm.me> | 2023-08-22 01:57:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-22 13:57:22 +0800 |
| commit | f733d155a7d5bf473c1dd7f74fef36d6d7ee4a6b (patch) | |
| tree | fb9e3a45eb3839f8962dd68e887e2801ef67e196 /.github/workflows | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-f733d155a7d5bf473c1dd7f74fef36d6d7ee4a6b.tar nvim-lspconfig-f733d155a7d5bf473c1dd7f74fef36d6d7ee4a6b.tar.gz nvim-lspconfig-f733d155a7d5bf473c1dd7f74fef36d6d7ee4a6b.tar.bz2 nvim-lspconfig-f733d155a7d5bf473c1dd7f74fef36d6d7ee4a6b.tar.lz nvim-lspconfig-f733d155a7d5bf473c1dd7f74fef36d6d7ee4a6b.tar.xz nvim-lspconfig-f733d155a7d5bf473c1dd7f74fef36d6d7ee4a6b.tar.zst nvim-lspconfig-f733d155a7d5bf473c1dd7f74fef36d6d7ee4a6b.zip | |
ci: fix git email (#2771)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docgen.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml index 0cd56e42..8c4a9ed3 100644 --- a/.github/workflows/docgen.yml +++ b/.github/workflows/docgen.yml @@ -25,8 +25,8 @@ jobs: docs: update server_configurations.md skip-checks: true run: | - git config user.name github-actions - git config user.email github-actions@github.com + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" git add doc/server_configurations.md doc/server_configurations.txt # Only commit and push if we have changes git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push) |
