build(deps): bump the build-tools group across 1 directory with 5 updates #6456
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| - release/* | |
| merge_group: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| changes: | |
| name: Detect Changes | |
| runs-on: ubuntu-slim | |
| outputs: | |
| core: ${{ steps.filter.outputs.core }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # cspell:ignore dorny | |
| - uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4 | |
| id: filter | |
| with: | |
| predicate-quantifier: "every" | |
| filters: | | |
| core: | |
| - '**' | |
| - '!.prettierignore' | |
| - '!.prettierrc.json' | |
| - '!cspell.yaml' | |
| - '!eslint.config.json' | |
| - '!.chronus/**' | |
| - '!eng/emitters/**' | |
| - '!packages/http-client-csharp/**' | |
| - '!packages/http-client-java/**' | |
| - '!packages/http-client-python/**' | |
| core: | |
| needs: changes | |
| if: needs.changes.outputs.core == 'true' | |
| uses: ./.github/workflows/core-ci.yml | |
| ci-gate: | |
| name: CI Gate | |
| runs-on: ubuntu-slim | |
| if: "!cancelled() || needs.core.result == 'cancelled'" | |
| needs: [core] | |
| steps: | |
| - name: Validate CI results | |
| run: | | |
| if [[ "${{ needs.core.result }}" == "failure" || "${{ needs.core.result }}" == "cancelled" ]]; then | |
| echo "Core CI failed or was cancelled" | |
| exit 1 | |
| fi | |
| echo "All CI checks passed or were appropriately skipped" |