Skip to content

Bump @types/node from 16.11.39 to 22.8.7 #152

Bump @types/node from 16.11.39 to 22.8.7

Bump @types/node from 16.11.39 to 22.8.7 #152

Workflow file for this run

---
name: 'Dependabot auto-merge'
# yamllint disable-line rule:truthy
on:
pull_request:
types:
- opened
- reopened
- synchronize
branches:
- 'main'
paths:
- 'yarn.lock'
permissions:
contents: write
pull-requests: write
jobs:
automerge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Retrieve Dependabot metadata
id: metadata
uses: dependabot/[email protected]
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
- name: Enable auto-merge for Dependabot PRs
if: ${{ steps.metadata.outputs.update-type != 'version-update:semver-major' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{ github.event.pull_request.html_url }}
run: gh pr merge --auto --merge "$PR_URL"