Skip to content

build(deps): bump doctrine/persistence from 3.3.2 to 3.3.3 #9441

build(deps): bump doctrine/persistence from 3.3.2 to 3.3.3

build(deps): bump doctrine/persistence from 3.3.2 to 3.3.3 #9441

Workflow file for this run

name: Dependabot auto-merge
on: pull_request
permissions:
pull-requests: write
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_ACTION_KEY }}
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}