diff options
author | dundargoc <gocdundar@gmail.com> | 2024-07-17 12:38:34 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-07-17 14:54:16 +0200 |
commit | dafd944a465c576a86cfa34cc7f7a5e18a39b8e7 (patch) | |
tree | 4e65a4a66be0449902a10792e1b8c280b1e5324e | |
parent | 8ddcf9d9390000c05bb817f70a1cbe36f2145d81 (diff) | |
download | rneovim-dafd944a465c576a86cfa34cc7f7a5e18a39b8e7.tar.gz rneovim-dafd944a465c576a86cfa34cc7f7a5e18a39b8e7.tar.bz2 rneovim-dafd944a465c576a86cfa34cc7f7a5e18a39b8e7.zip |
ci: remove "skip ci" tag
We can't skip CI runs as there are required checks that needs to always
be run.
-rw-r--r-- | .github/workflows/vim_patches.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/vim_patches.yml b/.github/workflows/vim_patches.yml index f4251336c7..b0be01089f 100644 --- a/.github/workflows/vim_patches.yml +++ b/.github/workflows/vim_patches.yml @@ -50,6 +50,6 @@ jobs: if: ${{ steps.update-version.outputs.NEW_PATCHES != 0 }} run: | git add -u - git commit -m 'docs: update version.c [skip ci]' + git commit -m 'docs: update version.c' git push --force https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY} ${VERSION_BRANCH} gh pr create --draft --fill --label vim-patch --base ${GITHUB_REF#refs/heads/} --head ${VERSION_BRANCH} || true |