Skip to content

ci: bump actions/deploy-pages from 4 to 5 #66

ci: bump actions/deploy-pages from 4 to 5

ci: bump actions/deploy-pages from 4 to 5 #66

# Dependabot auto-merge workflow
# Automatically merges Dependabot PRs for patch and minor updates
name: Dependabot Auto-merge
on:
pull_request_target:
types: [opened, synchronize, reopened]
permissions:
contents: write
pull-requests: write
jobs:
dependabot-auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Auto-merge patch and minor updates
if: contains(steps.metadata.outputs.update-type, 'semver-patch') || contains(steps.metadata.outputs.update-type, 'semver-minor')
run: |
gh pr merge --auto --squash "$PR_URL"
echo "✅ Auto-merged Dependabot PR: $PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Comment on major updates
if: contains(steps.metadata.outputs.update-type, 'semver-major')
run: |
gh pr comment "$PR_URL" --body "⚠️ This is a **major version update** and requires manual review before merging."
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}