Skip to content

Bump sphinx from 7.3.7 to 7.4.7 #153

Bump sphinx from 7.3.7 to 7.4.7

Bump sphinx from 7.3.7 to 7.4.7 #153

Workflow file for this run

name: Auto Merge Dependabot PRs
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Merge Dependabot PRs into dev
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git checkout dev
git merge --no-ff ${{ github.event.pull_request.head.sha }}
git push origin dev
env:
GITHUB_TOKEN: ${{ secrets.PAT }}