Skip to content

Update ergebnis/composer-normalize requirement from ^2.31.0 to ^2.32.0 #6

Update ergebnis/composer-normalize requirement from ^2.31.0 to ^2.32.0

Update ergebnis/composer-normalize requirement from ^2.31.0 to ^2.32.0 #6

Workflow file for this run

# https://docs.github.com/en/github-ae@latest/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions
name: auto-approve
on:
pull_request:
permissions:
pull-requests: write
jobs:
auto-approve:
name: Dependabot auto-approve
runs-on: ubuntu-22.04
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve the PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}