check files #15
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: Size Delta with Master (No Dependency Resolution) # this is part of the size-quality-gates workflow | |
| # on: | |
| # pull_request: | |
| # branches: | |
| # - master | |
| # push: | |
| # branches: | |
| # - master | |
| # jobs: | |
| # check-file-changes: | |
| # runs-on: ubuntu-22.04 | |
| # outputs: | |
| # builders_changed: ${{ steps.filter.outputs.builders_changed }} | |
| # steps: | |
| # - name: Checkout code | |
| # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| # - name: Use path filter to check for changes | |
| # uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 | |
| # id: filter | |
| # with: | |
| # filters: | | |
| # builders: | |
| # - '.builders/**' | |
| # - '.github/workflows/resolve-build-deps.yml' | |
| # - 'agent_requirements.in' | |
| # set-python-version: | |
| # name: Set Python version | |
| # runs-on: ubuntu-22.04 | |
| # steps: | |
| # - name: Set Python version | |
| # run: echo "PYTHON_VERSION=3.12" >> $GITHUB_ENV | |
| # measure-disk-usage: | |
| # needs: | |
| # - check-file-changes | |
| # if: needs.check-file-changes.outputs.builders_changed == 'false' | |
| # uses: ./.github/workflows/measure-disk-usage.yml | |
| # with: | |
| # resolved-deps: false |