Add privacy-preserving CLI telemetry and crash reports / 添加隐私友好的 CLI 遥测与崩溃报告 #4343
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: Cache impact guard | |
| on: | |
| pull_request_target: | |
| branches: [main-v2] | |
| types: [opened, synchronize, reopened, edited, ready_for_review] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| concurrency: | |
| group: cache-impact-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| cache-impact: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| ref: ${{ github.event.pull_request.base.sha }} | |
| - name: Collect PR changed files | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| PR_NUMBER: ${{ github.event.pull_request.number }} | |
| REPOSITORY: ${{ github.repository }} | |
| run: | | |
| gh api --paginate "repos/${REPOSITORY}/pulls/${PR_NUMBER}/files" \ | |
| --jq '.[].filename' > "$RUNNER_TEMP/cache-impact-files.txt" | |
| - name: Check cache-sensitive PR metadata | |
| env: | |
| PR_BODY: ${{ github.event.pull_request.body }} | |
| CACHE_IMPACT_CHANGED_FILES_FILE: ${{ runner.temp }}/cache-impact-files.txt | |
| run: bash scripts/check-cache-impact.sh |