Skip to content

Commit

Permalink
ci: ensure check for changes picks up when file has been removed (#1705)
Browse files Browse the repository at this point in the history
  • Loading branch information
arealmaas authored Jan 21, 2025
1 parent 896643a commit 3ac9f7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/workflow-check-for-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3ac9f7e

Please sign in to comment.