From 79f8e5276a6b013fbe8765353e379c12d32c68e8 Mon Sep 17 00:00:00 2001 From: Marie PUPO JEAMMET Date: Thu, 28 Aug 2025 15:30:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A(ci)=20fix=20changelog=20CI=20job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The command git watchanged is deprecated and is flag to be removed soon. It can be easily replace with git log --- .github/workflows/people.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/people.yml b/.github/workflows/people.yml index fcec617..b61cc59 100644 --- a/.github/workflows/people.yml +++ b/.github/workflows/people.yml @@ -49,7 +49,7 @@ jobs: with: fetch-depth: 0 - name: Check that the CHANGELOG has been modified in the current branch - run: git whatchanged --name-only --pretty="" origin/${{ github.event.pull_request.base.ref }}..HEAD | grep CHANGELOG + run: git log --name-only --pretty="" origin/${{ github.event.pull_request.base.ref }}..HEAD | grep CHANGELOG lint-changelog: runs-on: ubuntu-latest