Skip to content
This repository has been archived by the owner on Oct 8, 2023. It is now read-only.

Bump types-requests from 2.31.0.4 to 2.31.0.5 #513

Bump types-requests from 2.31.0.4 to 2.31.0.5

Bump types-requests from 2.31.0.4 to 2.31.0.5 #513

Workflow file for this run

name: Dependabot
on: [pull_request]
permissions:
contents: write
pull-requests: write
jobs:
dependabot-auto-merge:
name: Dependabot auto-merge
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1.6.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}