From 163739151329d02896b316e6250d0a9c578fa9ba Mon Sep 17 00:00:00 2001 From: Daniel Banck Date: Mon, 15 Jul 2024 13:45:26 +0200 Subject: [PATCH] Also allow deletions as valid changelog changes Else this workflow fails for release PRs that only remove files from `.changie/unreleased/` --- .github/workflows/check-changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-changelog.yml b/.github/workflows/check-changelog.yml index 95077903..a108af91 100644 --- a/.github/workflows/check-changelog.yml +++ b/.github/workflows/check-changelog.yml @@ -27,7 +27,7 @@ jobs: with: filters: | exists: - - added|modified: '.changes/unreleased/**.yaml' + - '.changes/unreleased/**.yaml' - name: Fail job if changelog entry is missing and required if: steps.changelog_check.outputs.exists == 'false'