fix(approvers): make Type parameter case-insensitive (#218) #580
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: EasyPIM Validation (Optimized) | |
| on: | |
| push: | |
| paths: | |
| - 'EasyPIM/**' | |
| - 'EasyPIM.Orchestrator/**' | |
| - 'shared/**' | |
| - 'tests/**' | |
| - 'build/**' | |
| pull_request: | |
| paths: | |
| - 'EasyPIM/**' | |
| - 'EasyPIM.Orchestrator/**' | |
| - 'shared/**' | |
| - 'tests/**' | |
| - 'build/**' | |
| workflow_dispatch: | |
| jobs: | |
| detect-changes: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| easypim: ${{ steps.changes.outputs.easypim }} | |
| orchestrator: ${{ steps.changes.outputs.orchestrator }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: dorny/paths-filter@v3 | |
| id: changes | |
| with: | |
| filters: | | |
| easypim: | |
| - 'EasyPIM/**' | |
| - 'shared/**' | |
| - 'tests/**' | |
| - 'build/**' | |
| orchestrator: | |
| - 'EasyPIM.Orchestrator/**' | |
| - 'shared/**' | |
| - 'tests/**' | |
| - 'build/**' | |
| validate-easypim: | |
| needs: detect-changes | |
| if: needs.detect-changes.outputs.easypim == 'true' | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Prerequisites (Optimized) | |
| run: .\build\vsts-prerequisites.ps1 | |
| shell: pwsh | |
| - name: Validate EasyPIM Module (Build Script) | |
| run: .\build\vsts-validate.ps1 | |
| shell: pwsh | |
| validate-orchestrator: | |
| needs: detect-changes | |
| if: needs.detect-changes.outputs.orchestrator == 'true' | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Prerequisites (Optimized) | |
| run: .\build\vsts-prerequisites.ps1 | |
| shell: pwsh | |
| - name: Validate Orchestrator Module (Build Script) | |
| run: .\build\vsts-validate.ps1 | |
| shell: pwsh | |
| validate-all: | |
| needs: detect-changes | |
| if: github.event_name == 'workflow_dispatch' || (needs.detect-changes.outputs.easypim == 'true' && needs.detect-changes.outputs.orchestrator == 'true') | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Prerequisites (Optimized) | |
| run: .\build\vsts-prerequisites.ps1 | |
| shell: pwsh | |
| - name: Validate All Modules (Build Script with Parallel) | |
| run: .\build\vsts-validate.ps1 | |
| shell: pwsh |