Skip to content

Update dependency pydantic-settings to >=2.5.2, <2.6.0 #91

Update dependency pydantic-settings to >=2.5.2, <2.6.0

Update dependency pydantic-settings to >=2.5.2, <2.6.0 #91

Workflow file for this run

name: Dependabot auto-approve
on:
pull_request:
permissions:
pull-requests: write
jobs:
pr-actor:
runs-on: ubuntu-latest
steps:
- name: Actor
run: echo ${{ github.actor}}
dependabot:
if: ${{ github.actor == 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a PR
run: gh pr merge --auto "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}