Skip to content

fix: autoapprove and automerge #35

fix: autoapprove and automerge

fix: autoapprove and automerge #35

Workflow file for this run

name: Auto approve and merge PRs by dependabot
on: pull_request
jobs:
autoapprove:
name: Auto Approve a PR by dependabot
runs-on: ubuntu-22.04
steps:
- name: Auto approve
uses: hmarr/auto-approve-action@v3
if: github.actor == 'dependabot[bot]'
automerge:
name: Auto merge after successful checks
needs: autoapprove
runs-on: ubuntu-latest
steps:
- name: Auto merge
uses: pascalgn/automerge-action@v0.16.2
if: github.actor == 'dependabot[bot]'
env:
MERGE_LABELS: dependencies
MERGE_METHOD: rebase