Add privacy-preserving CLI telemetry and crash reports / 添加隐私友好的 CLI 遥测与崩溃报告 #4495
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: Auto-label PRs | |
| # Apply area labels to PRs based on changed paths (see .github/labeler.yml). | |
| # Complements the AI-based issue labeler (issue-auto-label.yml). Version (v1/v2) | |
| # labels are handled separately by pr-version-label.yml. | |
| # | |
| # pull_request_target runs in the base repo context so it has the write token | |
| # needed to label PRs from forks; actions/labeler only reads the diff file list | |
| # (it never checks out or runs PR code), so this is safe. | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| concurrency: | |
| group: pr-autolabel-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/labeler@v6 | |
| with: | |
| sync-labels: false |