chore(deps): bump next from 10.2.3 to 14.2.10 #158
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: 'Merge Dependencies' | |
on: [pull_request_target] | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
auto-merge: | |
runs-on: ubuntu-latest | |
# only run for dependabot PRs | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v3 | |
- name: 'auto merge dependency updates from Dependabot' | |
uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
# Guarantee that commit comes from Dependabot (don't blindly trust external GitHub Actions) | |
if: github.actor == 'dependabot[bot]' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |