Skip to content

chore(deps-dev): bump @types/node from 20.12.8 to 20.12.11 #1282

chore(deps-dev): bump @types/node from 20.12.8 to 20.12.11

chore(deps-dev): bump @types/node from 20.12.8 to 20.12.11 #1282

Workflow file for this run

name: PR's
on:
pull_request:
jobs:
label:
name: 'Label Pull-Request'
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/labeler@v5
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'
dependabot:
name: 'Autobots, roll out!'
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- id: metadata
uses: dependabot/fetch-metadata@v2.1.0
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
- if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}