Skip to content

Commit

Permalink
Switch to native dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
lcobucci committed Feb 1, 2021
1 parent b255b6a commit fd8ad46
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:
- package-ecosystem: composer
directory: "/"
schedule:
interval: daily
time: "06:00"
reviewers:
- lcobucci
versioning-strategy: increase
open-pull-requests-limit: 20
allow:
- dependency-type: all
labels: ["Dependencies"]
39 changes: 39 additions & 0 deletions .github/workflows/merge-bot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Merge me!

on:
check_suite:
types:
- completed
pull_request:
types:
- edited
- labeled
- opened
- ready_for_review
- reopened
- synchronize
- unlabeled
- unlocked

jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- name: Merge me!
uses: ridedott/merge-me-action@v1
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_TOKEN_WORKAROUND` environment variable with permissions to
# push to a protected branch must be used. This variable can have an
# arbitrary name, as an example, this repository uses
# `GITHUB_TOKEN_DOTTBOTT`.
#
# When using a custom token, it is recommended to leave the following
# comment for other developers to be aware of the reasoning behind it:
#
# This must be used as GitHub Actions token does not support
# pushing to protected branches.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_LOGIN: dependabot[bot]
MERGE_METHOD: MERGE

0 comments on commit fd8ad46

Please sign in to comment.