diff options
author | James McCoy <jamessan@jamessan.com> | 2022-01-15 21:06:18 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2022-01-17 12:21:16 -0500 |
commit | 69b2dd175cdcd24db1d2517ccbb605f58bedb1a3 (patch) | |
tree | 8e2f818f711c317ce2916149d5f1be1e547197ba | |
parent | d7e2229b41748e84f525ee44cee19be81382ceab (diff) | |
download | rneovim-69b2dd175cdcd24db1d2517ccbb605f58bedb1a3.tar.gz rneovim-69b2dd175cdcd24db1d2517ccbb605f58bedb1a3.tar.bz2 rneovim-69b2dd175cdcd24db1d2517ccbb605f58bedb1a3.zip |
ci(api-docs): avoid running ci for doc commits
-rw-r--r-- | .github/workflows/api-docs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/api-docs.yml b/.github/workflows/api-docs.yml index ee72cf5f01..23b2c9ed72 100644 --- a/.github/workflows/api-docs.yml +++ b/.github/workflows/api-docs.yml @@ -48,6 +48,6 @@ jobs: if: ${{ steps.docs.outputs.UPDATED_DOCS != 0 }} run: | git add -u - git commit -m 'docs: regenerate' + git commit -m 'docs: regenerate [skip ci]' git push --force https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY} ${DOC_BRANCH} gh pr create --fill --base ${GITHUB_REF#refs/heads/} --head ${DOC_BRANCH} || true |