Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

Auto-merge Dependabot PRs #500

Auto-merge Dependabot PRs

Auto-merge Dependabot PRs #500

# See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- 'Continuous Integration'
jobs:
merge-me:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
name: Auto-merge Dependabot PRs
runs-on: ubuntu-latest
steps:
- name: Auto-Merge
uses: ridedott/merge-me-action@v2
with:
GITHUB_LOGIN: dependabot
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}