Skip to content

Update pydantic[email] requirement from <3,>=2.12 to >=2.12.5,<3 #328

Update pydantic[email] requirement from <3,>=2.12 to >=2.12.5,<3

Update pydantic[email] requirement from <3,>=2.12 to >=2.12.5,<3 #328

name: Dependabot Auto-Approve and Merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Auto-approve
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Auto-merge
run: gh pr merge --auto --squash --body "" "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}