build(deps-dev): bump the eslint group across 1 directory with 3 updates #4061
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 Automatic Labeler" | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened, edited] | |
| # Set default permissions to read-only | |
| permissions: read-all | |
| jobs: | |
| labeler: | |
| name: Label Pull Request | |
| runs-on: ubuntu-latest | |
| # Only this job needs specific permissions | |
| permissions: | |
| contents: read # Required to check out the code | |
| pull-requests: write # Required to apply labels to PRs | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@5ef0c079ce82195b2a36a210272d6b661572d83e # v2.14.2 | |
| with: | |
| egress-policy: audit | |
| - name: Apply PR Labels | |
| uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1 | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| sync-labels: true | |
| configuration-path: .github/labeler.yml |