Skip to content

fix: Add end-to-end testing for install script #3

fix: Add end-to-end testing for install script

fix: Add end-to-end testing for install script #3

Workflow file for this run

---
name: Auto-approve Dependabot PRs
'on':
pull_request_target:
types:
- labeled
- opened
- synchronize
- reopened
- ready_for_review
permissions:
pull-requests: write
jobs:
auto-approve:
name: Auto-approve
runs-on: ubuntu-latest
if: |
github.event.pull_request.user.login == 'dependabot[bot]' &&
contains(github.event.pull_request.labels.*.name, 'auto-approve')
steps:
- name: Auto-approve Dependabot PR
uses: hmarr/auto-approve-action@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}