Skip to content

Build(deps-dev): Bump eslint-config-next from 14.0.1 to 14.0.2 #598

Build(deps-dev): Bump eslint-config-next from 14.0.1 to 14.0.2

Build(deps-dev): Bump eslint-config-next from 14.0.1 to 14.0.2 #598

Workflow file for this run

name: Dependabot
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Auto-merge
if: ${{ steps.metadata.outputs.update-type != 'version-update:semver-major' }}
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}