Files
docs-blackroad-io/.github/workflows/auto-merge.yml
Alexa Louise 854cc2fac7 Add GitHub automation
- CI/CD pipeline with GitHub Actions
- Auto-merge for Dependabot and labeled PRs
- Issue and PR templates
- Dependabot configuration

🤖 Generated with [Claude Code](https://claude.com/claude-code)
2025-12-28 21:30:50 -06:00

19 lines
430 B
YAML

name: Auto Merge
on:
pull_request:
types: [opened, synchronize]
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]' || contains(github.event.pull_request.labels.*.name, 'automerge')
steps:
- name: Auto merge
uses: pascalgn/automerge-action@v0.15.6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_LABELS: automerge
MERGE_METHOD: squash