This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
Auto-merge Dependabot PRs #470
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} |