build(deps-dev): bump @typescript-eslint/eslint-plugin from 5.62.0 to 8.11.0 #3316
Workflow file for this run
This file contains 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: Dependabot PR | |
on: pull_request | |
permissions: | |
pull-requests: write | |
issues: write | |
repository-projects: write | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/fetch-metadata@v2.2.0 | |
with: | |
github-token: '${{ secrets.GITHUB_TOKEN }}' | |
- name: Add a label for dependencies updates | |
run: gh pr edit "$PR_URL" --add-label "automerge" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
lockfile_changes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: NPM Lockfile Changes | |
uses: codepunkt/npm-lockfile-changes@v1.0.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |