Bump caniuse-lite from 1.0.30001766 to 1.0.30001767 #6498
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: "Pull request labeler" | |
| on: | |
| - pull_request_target | |
| jobs: | |
| labeler: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/labeler@v6 | |
| - if: github.event.pull_request.user.login == 'dependabot[bot]' | |
| run: gh pr edit ${{ github.event.pull_request.number }} --add-label "generated" | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| GH_REPO: ${{ github.repository }} |