neovim

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

commit 0bc75ac78eba28c22d0facd3743fbe2dc573ee90
parent 20e16c1c49ea946203f13a7e77c9b20ff9749659
Author: dundargoc <gocdundar@gmail.com>
Date:   Mon, 20 Jan 2025 17:34:53 +0100

ci(news): treat deprecated.txt as part of news.txt

This is because we reference to deprecated.txt from news.txt, so
deprecation news updates are made only in deprecated.txt.

Diffstat:
M.github/workflows/news.yml | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/news.yml b/.github/workflows/news.yml @@ -20,7 +20,7 @@ jobs: type="$(echo "$message" | sed -E 's|([[:alpha:]]+)(\(.*\))?!?:.*|\1|')" breaking="$(echo "$message" | sed -E 's|[[:alpha:]]+(\(.*\))?!:.*|breaking-change|')" if [[ "$type" == "feat" ]] || [[ "$type" == "perf" ]] || [[ "$breaking" == "breaking-change" ]]; then - ! git diff HEAD~${{ github.event.pull_request.commits }}..HEAD --quiet runtime/doc/news.txt || + ! git diff HEAD~${{ github.event.pull_request.commits }}..HEAD --quiet runtime/doc/news.txt runtime/doc/deprecated.txt || { echo " Pull request includes a new feature, performance improvement