build: migrate from npm to pnpm #5255
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 Labeler | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize] | |
| jobs: | |
| label: | |
| name: Add PR labels | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v6 | |
| - uses: actions/labeler@v6 | |
| with: | |
| repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
| sync-labels: true |