fix: Keep workspace stack count fresh instead of hiding it on Mac/VoiceOver #4042
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
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| name: commit lint & label | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| env: | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| permissions: | |
| pull-requests: read | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check PR title | |
| id: check-pr-title | |
| run: echo "$PR_TITLE" | npx commitlint --verbose | |
| label: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: bcoe/conventional-release-labels@v1 | |
| with: | |
| type_labels: | |
| '{"feat": "PR: feature", "fix": "PR: fix", "breaking": "breaking | |
| change", "chore": "PR: chore", "docs": "PR: docs", "refactor": "PR: | |
| refactor", "revert": "PR: revert", "deprecate": "deprecation"}' | |
| ignored_types: '[]' |