From 1058aa665d83aa46d695ff71b6681988b8821d73 Mon Sep 17 00:00:00 2001 From: yuval-io <105581454+Yuval-Ariel@users.noreply.github.com> Date: Thu, 12 Oct 2023 16:42:15 +0300 Subject: [PATCH] CI: Verify updates to HISTORY.md on all file changes (#712) --- .github/workflows/check_license_and_history.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_license_and_history.yml b/.github/workflows/check_license_and_history.yml index 4a734c13d8..c844196778 100644 --- a/.github/workflows/check_license_and_history.yml +++ b/.github/workflows/check_license_and_history.yml @@ -48,7 +48,7 @@ jobs: - name: Check HISTORY run: | set +e - git diff --name-only --diff-filter=A ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }}|grep -v "\.github" |grep -q [a-z,A-Z] + git diff --name-only --diff-filter=ACMRT ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }}|grep -v "\.github" |grep -q [a-z,A-Z] if [ $? -eq "0" ]; then #echo "New files were added, we need to make sure the history.md file was updated" history_not_in=1