Skip to content

Bump svelte from 4.2.19 to 5.12.0 #48

Bump svelte from 4.2.19 to 5.12.0

Bump svelte from 4.2.19 to 5.12.0 #48

name: Dependabot auto-approve
on: pull_request_target
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
name: 'Dependabot'
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' && github.event.pull_request.user.login == 'dependabot[bot]'}}
steps:
- name: Approve PR
run: gh pr review "$PR_URL" --approve --body "Auto-approving this PR as it was opened by Dependabot"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
# if: ${{ github.event.pull_request.mergeable == true && github.event.pull_request.mergeable_state == 'clean' }}
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}