Files
homeport--termshot/.github/workflows/auto-merge.yml
T
wehub-resource-sync 607e84665c
spellcheck / spellcheck (push) Successful in 17m28s
golangci-lint / golangci-lint (push) Has been cancelled
Tests / Tests (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:33:05 +08:00

28 lines
637 B
YAML

---
name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v3.1.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --merge "$PR_URL"