Skip to content

Bump autoprefixer from 10.5.4 to 10.5.5 in the npm-dependencies group #11

Bump autoprefixer from 10.5.4 to 10.5.5 in the npm-dependencies group

Bump autoprefixer from 10.5.4 to 10.5.5 in the npm-dependencies group #11

name: Dependabot auto-merge
on:
pull_request_target:
types: [opened, synchronize, reopened, ready_for_review]
permissions:
contents: write
pull-requests: write
jobs:
auto-merge:
name: Auto-merge safe Dependabot updates
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Fetch Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v3
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for patch and minor updates
if: steps.metadata.outputs.update-type != 'version-update:semver-major'
run: gh pr merge --auto --squash "$PR_URL"
env:
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
PR_URL: "${{ github.event.pull_request.html_url }}"