Skip to content

build(deps-dev): bump iframe-resizer from 4.4.5 to 5.4.4 #18

build(deps-dev): bump iframe-resizer from 4.4.5 to 5.4.4

build(deps-dev): bump iframe-resizer from 4.4.5 to 5.4.4 #18

Workflow file for this run

---
name: Dependabot auto-merge
on:
pull_request:
branches: ["main"]
permissions:
pull-requests: write
issues: write
contents: write
jobs:
dependabot:
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: ⏬ Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: ✔ Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: 🤖 Enable auto-merge for Dependabot PRs
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}