Skip to content

Bump tox from 4.51.0 to 4.52.0 #25

Bump tox from 4.51.0 to 4.52.0

Bump tox from 4.51.0 to 4.52.0 #25

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 }}