Skip to content

build(deps): bump @mui/material from 6.0.1 to 6.1.1 #110

build(deps): bump @mui/material from 6.0.1 to 6.1.1

build(deps): bump @mui/material from 6.0.1 to 6.1.1 #110

Workflow file for this run

name: Dependabot PRs
on:
pull_request:
branches:
- main
jobs:
pr:
uses: ./.github/workflows/pr.yml
dependabot:
runs-on: ubuntu-latest
needs: [pr]
if: ${{ github.actor == 'dependabot[bot]' }}
permissions:
actions: write
contents: write
pull-requests: write
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Approve the PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}