Allow automatic merge of indirect dependency updates

This commit is contained in:
Zach Borboa
2024-02-05 22:33:07 -05:00
parent 13901ca277
commit e3aaad29d0
@@ -38,3 +38,11 @@ jobs:
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Merge Dependabot indirect dependency updates
if: ${{steps.dependabot-metadata.outputs.dependency-type == 'indirect'}}
run: |
gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}