Skip to content

chore(deps): bump immich-app/immich-server from v2.5.3 to v2.5.5 in /immich #47

chore(deps): bump immich-app/immich-server from v2.5.3 to v2.5.5 in /immich

chore(deps): bump immich-app/immich-server from v2.5.3 to v2.5.5 in /immich #47

name: Dependabot Auto-Merge
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: write
pull-requests: write
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Fetch Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Auto-merge minor and patch updates
if: steps.metadata.outputs.update-type == 'version-update:semver-minor' || 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 }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Log skipped major update
if: steps.metadata.outputs.update-type == 'version-update:semver-major'
run: echo "Major update detected - manual review required"