Skip to content

Commit

Permalink
Merge pull request #326 from DanielBadura/add-automatic-merge-for-dep…
Browse files Browse the repository at this point in the history
…endabot

Add workflow file for automating the merges of PR opened by @dependabot.
  • Loading branch information
Ocramius authored Dec 1, 2021
2 parents e51cba8 + 5fbbcef commit 7933a63
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/merge-dependabot-upgrades.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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:
- "Check Coding Standards"
- "Static Analysis by PHPStan"
- "Static Analysis by Psalm"
- "Static Analysis by Require-Checker"
- "PHPUnit tests"

jobs:
merge-me:
name: Auto-merge Dependabot PRs
runs-on: ubuntu-latest
steps:
- name: Auto-Merge
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: ridedott/merge-me-action@v2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_METHOD: MERGE

0 comments on commit 7933a63

Please sign in to comment.