👷 Add dependabot workflow

This commit is contained in:
BetaHuhn 2021-06-11 11:34:35 +02:00
parent f4f3e42df7
commit 4ab98aecfb

16
.github/workflows/dependabot.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Dependabot PR CI
on:
schedule:
- cron: "0 */6 * * *" # Every six hours
workflow_dispatch:
jobs:
auto-merge:
name: Auto Merge
runs-on: ubuntu-latest
steps:
- name: Merge minor/patch updates
uses: koj-co/dependabot-pr-action@master
with:
token: ${{ secrets.GH_PAT }}
merge-minor: true
merge-patch: true