diff options
author | dundargoc <gocdundar@gmail.com> | 2025-01-20 17:34:53 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2025-01-20 20:39:08 +0100 |
commit | 0bc75ac78eba28c22d0facd3743fbe2dc573ee90 (patch) | |
tree | 8f6a5bacd44eef02499f4775530dad7bfe918229 | |
parent | 20e16c1c49ea946203f13a7e77c9b20ff9749659 (diff) | |
download | rneovim-0bc75ac78eba28c22d0facd3743fbe2dc573ee90.tar.gz rneovim-0bc75ac78eba28c22d0facd3743fbe2dc573ee90.tar.bz2 rneovim-0bc75ac78eba28c22d0facd3743fbe2dc573ee90.zip |
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.
-rw-r--r-- | .github/workflows/news.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/news.yml b/.github/workflows/news.yml index ca07876197..e2d9a058c3 100644 --- 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 |