fix: distinguish user-provided mapping from auto-created default in summary #106
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI Gate | |
| # Always runs - provides status checks for branch protection when other workflows are skipped | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check-changes: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| code: ${{ steps.filter.outputs.code }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| filters: | | |
| code: | |
| - '**.cs' | |
| - '**.csproj' | |
| - '**.sln' | |
| - 'Directory.Build.props' | |
| - 'Directory.Packages.props' | |
| - 'nuget.config' | |
| # These jobs satisfy branch protection when code workflows are skipped | |
| build-status: | |
| runs-on: ubuntu-latest | |
| needs: check-changes | |
| if: needs.check-changes.outputs.code != 'true' | |
| steps: | |
| - run: echo "No code changes - build not required" | |
| test-status: | |
| runs-on: ubuntu-latest | |
| needs: check-changes | |
| if: needs.check-changes.outputs.code != 'true' | |
| steps: | |
| - run: echo "No code changes - tests not required" |