-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added dependabot and auto-merge for it
- Loading branch information
Showing
2 changed files
with
48 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,25 @@ | ||
{ | ||
"version": 2, | ||
"updates": [ | ||
{ | ||
"allow": [ | ||
{ | ||
"dependency-type": "all" | ||
} | ||
], | ||
"directory": "/", | ||
"package-ecosystem": "composer", | ||
"schedule": { | ||
"interval": "daily" | ||
}, | ||
"versioning-strategy": "increase" | ||
}, | ||
{ | ||
"directory": "/", | ||
"package-ecosystem": "github-actions", | ||
"schedule": { | ||
"interval": "daily" | ||
} | ||
} | ||
] | ||
} |
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,23 @@ | ||
# 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: | ||
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.9.35 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
MERGE_METHOD: MERGE |