fix(desktop): hide custom provider SDK costs by default #16533
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: pr-design-basis | |
| # 轻校验:PR 变更命中 UI 路径时,正文「引用的设计规范」必须已按模板填写。 | |
| # 判定逻辑与豁免写法见 scripts/check-pr-design-basis.mjs 头部注释。 | |
| on: | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize, ready_for_review] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| concurrency: | |
| group: pr-design-basis-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| name: check:pr-design-basis | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| if: ${{ !github.event.pull_request.draft }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: 22 | |
| - name: Verify PR design basis | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| run: node scripts/check-pr-design-basis.mjs |