Deps: Update typescript-eslint monorepo to v8.17.0. - abandoned #3486
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: PRs | |
on: | |
pull_request: | |
types: [opened, synchronize, labeled] | |
jobs: | |
renovate: | |
name: 🔍 Update Lockfile & Add Changeset | |
runs-on: ubuntu-latest | |
if: contains(github.event.pull_request.labels.*.name, 'Dependency') | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: 🕶️ Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{github.event.pull_request.head.ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
token: ${{ secrets.MACHINE_USER }} | |
- name: 📦 Install | |
uses: ./.github/common/install | |
- name: 🚚 Update PR | |
uses: mscharley/[email protected] | |
with: | |
token: ${{ secrets.MACHINE_USER }} | |
use-conventional-commits: false | |
commit-message: 'Deps: Add changeset.' | |
author-name: nordcombot | |
author-email: [email protected] |