neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 1be37c245f27e2fa74347e002c5fd1c59f14422a
parent c8b68523634d6a8375ffed77ef3b9d93231c99b1
Author: Jan Edmund Lazo <jan.lazo@mail.utoronto.ca>
Date:   Sun, 16 Nov 2025 23:48:43 -0500

ci(vim-patches): add N/A tokens to version.c commit #36524


Diffstat:
M.github/workflows/vim_patches.yml | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/vim_patches.yml b/.github/workflows/vim_patches.yml @@ -50,6 +50,9 @@ jobs: if: ${{ steps.update-version.outputs.NEW_PATCHES != 0 }} run: | git add -u - git commit -m 'docs: update version.c' + TMP_FILE=$(mktemp) + printf 'docs: update version.c\n\n' > ${TMP_FILE} + bash scripts/vim-patch.sh -n >> ${TMP_FILE} + git commit -F ${TMP_FILE} 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