From 3ac9f7e3cac70ebca46684eb66006f02dac8134f Mon Sep 17 00:00:00 2001 From: Are Almaas Date: Tue, 21 Jan 2025 13:34:36 +0100 Subject: [PATCH] ci: ensure check for changes picks up when file has been removed (#1705) --- .github/workflows/workflow-check-for-changes.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow-check-for-changes.yml b/.github/workflows/workflow-check-for-changes.yml index 88e3b2df4..c77b06e22 100644 --- a/.github/workflows/workflow-check-for-changes.yml +++ b/.github/workflows/workflow-check-for-changes.yml @@ -21,10 +21,10 @@ jobs: name: Filter runs-on: ubuntu-latest outputs: - hasInfrastructureChanges: ${{ steps.filter.outputs.infrastructure_any_changed == 'true' }} - hasApplicationChanges: ${{ steps.filter.outputs.applications_any_changed == 'true' }} - hasMigrationChanges: ${{ steps.filter.outputs.migrations_any_changed == 'true' }} - hasNodeLoggerChanges: ${{ steps.filter.outputs.nodeLogger_any_changed == 'true' }} + hasInfrastructureChanges: ${{ steps.filter.outputs.infrastructure_any_modified == 'true' }} + hasApplicationChanges: ${{ steps.filter.outputs.applications_any_modified == 'true' }} + hasMigrationChanges: ${{ steps.filter.outputs.migrations_any_modified == 'true' }} + hasNodeLoggerChanges: ${{ steps.filter.outputs.nodeLogger_any_modified == 'true' }} steps: - name: Checkout uses: actions/checkout@v4