Skip to content

Commit

Permalink
fix: 2232
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-sartori-zupit committed Sep 26, 2024
1 parent 5a03474 commit 5186c0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dotnet-workflow-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ jobs:
name: xx
steps:
- name: Run
run: echo "${{!inputs.CHECK_WORKDIR_CHANGES}} ${{needs.workdir-has-changes.outputs.changes-detected}} ${{inputs.CHECK_CHANGES_BY_JOBS}} ${{github.job}} ${{contains(fromJson(inputs.CHECK_CHANGES_BY_JOBS),github.job)}}"
run: echo "${{!inputs.CHECK_WORKDIR_CHANGES}} ${{needs.workdir-has-changes.outputs.changes-detected == 'true'}} ${{inputs.CHECK_CHANGES_BY_JOBS == 'all'}} ${{github.job}} ${{contains(fromJson(inputs.CHECK_CHANGES_BY_JOBS),github.job)}}"
- name: Run
run: ${{ !inputs.CHECK_WORKDIR_CHANGES || (needs.workdir-has-changes.outputs.changes-detected == 'true' && (inputs.CHECK_CHANGES_BY_JOBS == 'all' || contains(fromJson(inputs.CHECK_CHANGES_BY_JOBS), github.job))) }}

dotnet-common:
needs: workdir-has-changes
Expand Down

0 comments on commit 5186c0c

Please sign in to comment.