-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #326 from DanielBadura/add-automatic-merge-for-dep…
…endabot Add workflow file for automating the merges of PR opened by @dependabot.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
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 |