This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
build(deps): bump the symfony group with 39 updates #6532
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto approve | |
on: | |
pull_request_target | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
auto-approve: | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' | |
steps: | |
- name: Enable auto-merge for Dependabot PRs | |
run: gh pr review --approve "$PR_URL" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |